section
{
    height: 100vh; /* Cada sección ocupa toda la altura de la ventana */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    z-index: 1000;
    height: 70px;
}