* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body, header div {
  background-color: #FDFFFF;
}

header nav {
  border: 10px solid darkgreen;
  margin: 10px;
  color: darkgreen;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 10px solid darkgreen;
  margin: 10px;
  color: darkgreen;
}
main h1 {
  font-size: clamp(2rem, 5vw, 6rem);
  color: white;
  text-shadow: 0 0 25px darkgreen;
}
main video {
  max-width: 95%;
  height: auto;
  display: block;
  margin: auto;
  width: 1200px;
}

footer {
  color: darkgreen;
  text-align: center;
}
footer section {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 3rem;
  justify-content: center;
}

.imagenes-hotel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  justify-content: center;
  padding: 15px;
}
.imagenes-hotel figure {
  display: flex;
  flex-direction: column;
}
.imagenes-hotel img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.imagenes-hotel figcaption {
  padding: 10px;
  text-align: center;
}

.maps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  main section video {
    max-width: 90%;
    height: auto;
    display: block;
    margin: auto;
  }
  .imagenes-hotel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: center;
  }
  .maps iframe {
    max-width: 100%;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  main section video {
    max-width: 90%;
    height: auto;
    display: block;
    margin: auto;
  }
  .imagenes-hotel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: center;
  }
  .maps iframe {
    max-width: 100%;
    max-height: 50%;
  }
}

/*# sourceMappingURL=main.css.map */
