¿Deseas entrar al castillo?
margin: 0;
padding: 0;
font-family: "MiFuente", sans-serif;
background-color: black;
overflow: hidden;
}
.contenedor {
text-align: center;
position: relative;
height: 100vh;
}
.fondo {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
opacity: 0.7;
}
.titulo {
margin-top: 100px;
color: white;
font-size: 3em;
}
.botones button {
margin: 20px;
padding: 15px 30px;
font-size: 1.5em;
cursor: pointer;
}
.oculto {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 10;
}
document.getElementById("boton-si").addEventListener("click", () => {
window.location.href = "juego.html"; // O a donde quieras que vaya
});
document.getElementById("boton-no").addEventListener("click", () => {
const screamer = document.getElementById("screamer");
screamer.style.display = "block";
// Sonido (si tienes uno)
const audio = new Audio("audio/screamer.mp3");
audio.play();
setTimeout(() => {
screamer.style.display = "none";
}, 3000); // Dura 3 segundos
});