body {
  font-family: Poppins;
  background: #443120;
}

.container {
  max-width: 1500px;
  margin: auto;
}

h1 {
  font-size: 96px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 42px;
  font-weight: 200;
  text-align: center;
  padding: 0 0 20px 0;
  margin: 0px;
}

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url("../src/header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: rgba(255, 255, 255, 0.826);
  padding-top: 220px;
  padding-bottom: 180px;
}

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: #443120;
  padding: 16px 32px;
  background-color: white;
  border-radius: 2px;
}

section {
  max-width: 1200px;
  padding: 50px;
}

main {
  background-color: white;
}

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.grid-3-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.lido-main-photo {
  width: 100%;
}

.img-responsive {
  width: 100%;
  display: block;
}
.embed {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.cards-section {
  background-color: #f8f8f8;
  max-width: 1400px;
  padding: 100px;
  margin: auto;
}
.card {
  background-color: white;
}
.card p {
  color: #67627b;
}
.card-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}
.card-body {
  padding: 0 8%;
}

.button {
  display: block;
  color: white;
  background-color: #443120;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px;
  border-radius: 2px;
}

.gallery {
  max-width: 1400px;
  background-color: white;
}

footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.65)),
    url("../src/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: rgba(255, 255, 255, 0.826);
  padding: 50px;
  color: white;
}
footer ul {
  list-style: none;
  padding: 0px;
  text-align: left;
}

footer a {
  color: white;
  opacity: 0.7;
}
footer p {
  opacity: 0.7;
  text-align: left;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 30px;
}

@media (max-width: 960px) {
  header {
    padding: 58px 0;
  }
  header h1 {
    font-size: 42px;
  }
  header h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  header a {
    font-size: 12px;
    padding: 8px 16px;
  }

  section {
    padding: 20px;
  }

  .cards-section {
    padding: 10%;
  }
  .card p {
    font-size: 14px;
  }

  .footer-grid,
  .grid-2-columns,
  .grid-3-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
