body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: #121212;
}

.header {
  width: 100%;
  height: 250px;
  background: url("./assets/images/header-image.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.header-title,
.header-subtitle {
  border-radius: 10px;
  padding: 10px 20px;
  color: #F5F5F5;
  font-weight: bold;
  text-align: center;
}

.header-title {
  background: #194488;
  font-size: 2em;
}

.header-subtitle {
  width: 700px;
  background: #6B8E23;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #ECFFFF;
  text-align: center;

}

.main>div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
}

.main>div>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main>div>div>img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}

.main>div>div :is(h3, p) {
  margin-top: 20px;
}

.footer {
  padding: 100px 50px;
}

.footer>div {
  padding: 30px 20px;
  width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #B2E0D4;
  border-bottom: 10px solid #6BAF8A;
  border-radius: 20px;
}

.footer>div>img {
  margin-right: 25px;
  width: 45%;
  border-radius: 10%;
}

.footer>div>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer>div>div>p {
  font-style: italic;
  margin: 20px 0;
}