/* Estilos generales */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #000;
    font-family: "Futura", "Arial", sans-serif;
    text-align: center;
}

/* Contenedor responsivo */
.container {
    width: 90%;
    max-width: 700px;
}

/* Estilo del texto */
h1 {
    font-size: 5rem;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

/* Responsividad para móviles */
@media (max-width: 600px) {
    h1 {
        font-size: 4rem;
    }
}

/* Efecto al pasar el mouse */
h1:hover {
    color: #cfcfcf;
    transform: scale(1.1);
    cursor: pointer;
}
