body {
  font-family: "Montserrat", sans-serif;
  background-color: rgb(232, 231, 233);
}

:root {
  --primary-color: rgb(39, 32, 68);
  --secondary-color: white;
  --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
section {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px;
}
.column2grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.grid {
  display: grid;
  grid-gap: 64px;
}
.text-center {
  text-align: center;
}
.places {
  max-width: 1450;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background-color: rgb(232, 231, 233);
}

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url(../images/La_Minerva_de_Guadalajara_06.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--secondary-color);
  text-align: center;
  padding-top: 200px;
  padding-bottom: 72px;
}
header h1 {
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  margin: 25px;
}
header h2 {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.5;
  margin: 0;
}
header h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
}
header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  padding: 10px 20px;
  margin-top: 32px;
  display: inline-block;
  border-radius: 5px;
}
main {
  background-color: var(--secondary-color);
}
main h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 24px;
  text-align: center;
}
main p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}
.info img {
  opacity: 0.9;
}
.card {
  background-color: var(--secondary-color);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  padding: 10px;
  margin-top: 50px;
}
.card h3 {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.card p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.linkPlaces {
  display: block;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  padding: 10px 20px;
  margin-top: 32px;
  border-radius: 5px;
  justify-items: center;
}
.cardheader.grid {
  grid-gap: 0;
}
.card img {
  max-width: 100%;
}

embed {
  width: 100%;
  aspect-ratio: 1/1;
}
footer {
  background-image: linear-gradient(
      rgba(15, 10, 32, 0.8),
      rgba(15, 10, 32, 0.8)
    ),
    url(../images/Jardín_Hidalgo_Tlaquepaque_de_noche.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--secondary-color);
  padding: 30px 0;
}
.colum3grid {
  grid-template-columns: 2fr 2fr 2fr;
  align-items: center;
}

footer h3 {
  font-weight: 700;
  font-size: 15px;
  line-height: 30px;
}
footer p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer a {
  color: aliceblue;
  font-size: 13px;
}
.links {
  padding-left: 20px;
}
.rights {
  padding: auto;
  margin: 0 auto;
  text-align: center;
}
.colums3grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.videos {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 21 / 9;
}
@media (max-width: 800px) {
  header {
    padding: 60px 0;
  }
  header h1 {
    font-size: 48px;
  }
  header h2 {
    font-size: 15px;
  }
  header h3 {
    font-size: 12px;
  }
  .column2grid {
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }
  .column2grid img {
    max-width: 100%;
  }
  .places {
    grid-template-columns: 1fr;
  }
  .cardheader {
    display: none;
  }
  .embed {
    aspect-ratio: 16/9;
  }
  .colums3grid {
    grid-template-columns: 1fr;
  }
}
