main {
  background-color: #F9ECE1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

footer {
  background-color: #1A9462;
  text-align: center;
}

footer a {
  color: black;
}

section h2 {
  color: #1A9462;
}

section p {
  text-align: justify;
}

.banner {
  color: white;
  display: flex;
  justify-content: center;
  padding: 50px 0 10px 0;
}

.banner .content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  width: 80%;
}

.banner .content .left {
  color: black;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
}

.banner .content a {
  background-color: #FFD862;
  border-radius: 16px;
  color: #1A9462;
  font-size: 1.1em;
  font-weight: 800;
  padding: 8px 0px 8px 0px;
  text-align: center;
  text-decoration: none;
  width: 200px;
}

.banner .content p {
  text-align: left;
}

.banner .content h1 {
  color: #1A9462;
  font-size: 1.8em;
  font-style: italic;
  font-weight: 900;
  padding-top: 50px;
  word-break: break-word;
}

@media (max-width: 1150px) {
  .banner .content .right img {
    width: 480px;
  }

  .banner .content h1 {
    font-size: 1.7em;
  }
}

@media (max-width: 900px) {
  .banner {
    padding: 30px 0 10px 0;
  }

  .banner .content {
    gap: 40px;
    width: 85%;
  }

  .banner .content .right img {
    width: 420px;
  }

  .banner .content h1 {
    font-size: 1.5em;
  }

  .banner .content a {
    font-size: 1em;
    width: 160px;
  }
}

@media (max-width: 750px) {
  .banner .content {
    gap: 20px;
  }

  .banner .content h1 {
    font-size: 1.4em;
  }

  .banner .content a {
    font-size: 0.9em;
    width: 120px;
  }

  .banner .content p {
    font-size: 0.8em;
  }

  .banner .content .right img {
    width: 300px;
  }
}

@media (max-width: 600px) {
  .banner {
    padding: 20px 0 10px 0;
  }

  .banner .content {
    align-items: center;
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
    width: 95%;
  }

  .banner .content .left a {
    margin: 0 auto;
    width: 80%;
  }

  .banner .content .left h1 {
    padding-top: 0px;
  }

  .banner .content .left p {
    text-align: center;
  }

  .banner .content .right img {
    width: 95%;
  }
}

.contact-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 30px 0px;
}

.contact-info .content {
  width: 80%;
}

.contact-info .content p {
  font-size: 1em;
  text-align: center;
}

.contact-info .content p a {
  color: #1A9462;
  text-decoration: none;
}

@media (max-width: 1150px) {
  .contact-info .content {
    width: 90%;
  }

  .contact-info .content p {
    font-size: 0.9em;
  }
}

@media (max-width: 650px) {
  .contact-info .content {
    gap: 20px;
    width: 90%;
  }

  .contact-info .content p {
    font-size: 0.8em;
  }
}
