body{
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", serif;
}

.contenedor {
  position: relative;
  width: 100%;
  height: 100vh; /* pantalla completa */
  overflow: hidden;
}

/* Imagen de fondo */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Caja con texto */
#caja {
  position: absolute;
  top: 30%;       /* puedes moverla cambiando este valor */
  left: 55%;      /* y este también */
  transform: translate(-50%, -50%);
  background-color: white;
  width: 30%;
  padding: 20px;
  z-index: 1;
}

/* Párrafos */
#p1, #p2, #p3 {
  font-family: "Times New Roman", serif;
  font-size: 20px;
  color: #0501EB;
  margin-bottom: 15px;
}

/* Botón */
.button {
  position: absolute;
  top: 55%;          /* mueve verticalmente */
  left: 55%;         /* mueve horizontalmente */
  transform: translate(-50%, -50%);
  background-color: white;
  color: #0501EB;
  padding: 15px 25px;
  font-family: "Times New Roman", serif;
  font-size: 20px;
  z-index: 2;
}


