/* Reseteo básico */
body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #333;
    background-color: #f0f0f0;
    /* Habilita el scroll snapping en el eje Y para una transición limpia */
    scroll-snap-type: y mandatory;
}

/* Estilo para cada sección */
.section {
    height: 100vh; /* Ocupa el 100% del alto del viewport */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    /* Punto de anclaje para el scroll snapping */
    scroll-snap-align: start;
}

/* Colores de fondo alternos para diferenciar secciones */
.section:nth-child(even) {
    background-color: #e9e9e9;
}

h1 {
    font-size: 3em;
    padding: 20px;
}

/* Estilo para el overlay inicial */
#start-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#start-button {
    padding: 20px 40px;
    font-size: 1.5em;
    cursor: pointer;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

#start-button:hover {
    background-color: white;
    color: black;
}