main > section {color: var(--blanco);}
main a {
    color: var(--primary-color);
} main a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
#about p:not(:first-of-type) {
    padding: 10px 20px;
} #about p>a>img {
    margin-right: 10px;
}

#index p:first-of-type, #demo p:first-of-type, #about p:first-of-type, #additionalImg p:first-of-type {
    text-align: center;
    font-weight: 600;
    margin: 10px 0px;
} #index, #demo, #additionalImg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
} #index img {
    border: 1px solid #353535;
} #additionalImg img{
    width: unset;
    max-width: 800px;
}
/*PALETA DE COLORES*/
#ctn_paletaDeColores {
    align-items: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    margin: 40px 0px;
} #paletaDeColores {
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
} #paletaDeColores > div {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/*FAVICON*/
#ctn_favicon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/*MEDIA QUERIES AND BREAKPOINTS*/
@media screen and (max-width: 800px) {
    #index img {
        width: 95%;
        max-width: 700px;
        border: 1px solid #353535;
    }
    #paletaDeColores {
        width: 95%;
        height: 116px;
    } #paletaDeColores > div {
        width: 20%;
        height: 80%;
    } #ctn_favicon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    } #ctn_favicon > img {
        width: 85%;
        max-width: 400px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    #index img {
        width: 80%;
        border: 1px solid #353535;
    } #demo video {
        max-width: 850px;
    }
    #paletaDeColores {
        width: 278px;
        height: 116px;
    } #paletaDeColores > div {
        width: 48px;
        height: 80px;
    } #ctn_favicon {
        width: 100%;
    } #ctn_favicon > img {
        width: 200px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1800px) {
    #paletaDeColores {
        width: 278px;
        height: 116px;
    } #paletaDeColores > div {
        width: 48px;
        height: 80px;
    } #ctn_favicon {
        width: 100%;
    } #ctn_favicon > img {
        width: 200px;
    }
    #index img {
        width: 80%;
        border: 1px solid #353535;
    } #demo video {
        max-width: 1100px;
    }
}

@media screen and (max-width: 1800px) {
    #demo video {
        width: 90%;
    }
}
@media screen and (min-width: 1801px) {
    #index img {
        width: 80%;
        border: 1px solid #353535;
    } #demo video {
        width: 60%;
    } #demo {
        margin-bottom: 100px;
    }
    #paletaDeColores {
        width: 278px;
        height: 116px;
    } #paletaDeColores > div {
        width: 48px;
        height: 80px;
    }
    #ctn_favicon {
        width: 100%;
    } #ctn_favicon > img {
        width: 200px;
    }
}

@media screen and (min-width: 820px) {
    main {
        padding: 70px 10% 0px;
    }
} @media screen and (max-width: 821px) {
    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}