
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  background-color: #000;
}
.pantalla {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
}
.pantalla img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zona-clic {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.opcion {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 8%;
}
