@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  padding: 0px;
  margin: 0px;
  background: #fffaeb;
  font-family: Roboto;
}

.container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 30px 30px;
}

.navbar {
  background: #1fa35e;
  border-radius: 30px;
  width: 100%;
  padding: 20px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box
}
.navbar > a > img {
  width: 100px;
}
.navbar > p {
  color: #fff;
  font-weight: bold;
  font-size: 14pt;
  padding: 0px;
  margin: 0px;
}

.header-txt {
  font-size: 18pt;
  margin: 10px 0px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 20px;
  background: #fff;
  margin-top: 20px;
}
.header-img {
  max-width: 100%;
}