.contenido h1 {
  font-size: 32px;
  font-family: 'Russo One';
}

.modal {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  animation: modal 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 101;
}

.contenido {
  margin: auto;
  width: 80%;
  /* background: white; */
  border-radius: 10px;
  text-align: center;
}

#cerrar {
  display: none;
}

#cerrar+label {
  position: fixed;
  color: white;
  font-size: 25px;
  z-index: 102;
  background: darkred;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  right: 20px;
  top: 20px;
  cursor: pointer;
  animation: modal 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
  text-align: center;
}

#cerrar:checked+label, #cerrar:checked~.modal {
  display: none;
}

.btn-reserva {
  width: 98%;
  outline: none;
  background: darkred;
  font-size: 18px;
  border: none;
  color: #fff;
  padding: 15px 0;
  cursor: pointer;
  transition: all .3s ease;
  font-weight: lighter;
  font-family: inherit;
  margin-bottom: 20px;
  border-radius: 2px;
  font-family: 'Russo One';
}

.btn-reserva:hover {
  background: rgba(0, 0, 0, .9);
}

.btn-reserva:checked {
  display: none;
}

.modalfoto{
  /* height: 95vh; */
  width: 100%;
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width:1024px) {
  .contenido h1 {
    font-size: 70px;
  }

  .btn-reserva {
    width: 15%;
  }
  .modalfoto{
    height: 95vh;
    width: auto;
  }
}
