html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  text-align: center;
  background-color: #fafafa;
  color: #333;
  background-color: #fbf9e9;
}

.banner {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 50px;
}

main {
  flex: 1;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}

footer {
  width: 100%;
  max-height: 250px;
  margin-top: auto;
}

.footer-banner {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
    line-height: 1;
    margin: 30px 15px;
  }

  .banner {
    max-height: 200px;
  }

  footer {
    max-height: 200px;
  }
  .footer-banner {
    max-height: 100px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 30px 15px;
  }

  .banner {
    max-height: 200px;
  }

  footer {
    max-height: 200px;
  }
  .footer-banner {
    max-height: 150px;
  }
}
