body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: pink;
}

#texto {
  font-size: 1.5em;
  color: white;
}

img {
  height: 300px;
  width: 300px;
}

.opcion {
  display: block;
  margin: 10px 0;
  padding: 10px;
  background: #007BFF;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  font-size: 1.2em;
}

.opcion:hover {
  background: #0056b3;
}

#opciones {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
