:root{
    --green1: #b4ff9a;
    --green2: #71c55b;
    --green3: #258d19;
    --green4: #007000;
    --green5: #005c00;
    --aquamarine0: #bdffff;
    --aquamarine1: #9ce9de;
    --aquamarine2: #7ad3be;
    --aquamarine3: #57bd9e;
    --aquamarine4: #2ca880;
    --aquamarine5: #00986c;
    --deep1: #0f3443;
    --deep2: #34e89e;
    --deep3: #43C6AC;
    --deep4: #15284c;
    --footer: rgb(67, 180, 111);
}

.cabecera{
    width: 100%;
}

/* CONFIGURACION GENERAL PARA LAS SECCIONES */
.seccion{
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.ultimo{
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

/* SECCIÓN DE ELECCIONES */
.opciones{
    background: var(--deep2);
    min-height: 90vh;
    width: 100%;
    max-height: 100vh;
}

.opciones:first-child{
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}

/* SECCIÓN 1 */
.presentacion{
    background: var(--deep1);
    /* margin-top: 35px; */
    display: flex;
    align-items: center;
}

/* SECCIÓN 2 */
.preguntas{
    background: var(--deep2);
}

/* SECCIÓN 3 */
.illia{
    background: var(--deep1);
    min-height: 100vh;
    max-height: 105vh ;
}

/* SECCIÓN 4 */
.preferencias{
    background-color: var(--deep2);
}

/* SECCIÓN 5 */
.futuro{
    background: var(--deep1);
}

 /* FOOTER DE LA PÁGINA */
.pie{
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .7vmax;
    bottom: 0;
    width: 99vw;
    height: 10vh;
    background-color: var(--footer);
    text-align: center;
    font-style: italic;
    font-size: 1.6vmax;
    border-top: .25vmax solid rgba(69, 182, 113, 0.7);;
    border-radius: 10px;
}