.about{
    /*background-color: blueviolet;/**/
    min-height: 80vh;
    width: 80%;
    display: flex;
    flex-direction: column;
    margin: 30px auto;
    color: var(--text-white);
}
.about>*{
    /*border: red dotted 2px; /* For debugging purposes */
    margin-bottom: 35px;
}

.aboutFounder{
    display: flex;
    flex-direction: column;
    width: 100%;
    
}

.founderTitle{
    padding: 15px;
    font-size: 2em;
    font-weight: bold;
    color: var(--titles-white);
}

.founderData{    
    display: flex;
    flex-direction: row;
    width: 100%;
}

.founderItem{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 10px ;
    padding: 20px;
    border: 2px solid var(--products-border-hover);
    background-color: var(--products-background);
    border-radius: 25px;
    align-items: center;
}

.founderName{
    font-size: 1.5em;
    font-weight: bold;
    color: var(--titles-white);
    margin-top: 10px;
    margin: auto;
}

.founderDescription{
    font-size: 1.2em;
    text-align: center;
    margin: auto;
    font-weight: bold;
    transition: all .3s ease;
}

.founderDescription:hover{
    scale: 1.05;
    transition: all .3s ease;
}

/*About project*/

.aboutProject{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.aboutProjectTitle{
    padding-left: 15px;
    font-size: 2em;
    font-weight: bold;
    color: var(--titles-white);
    margin-bottom: 20px;
}

.aboutProjectDescription{
    border-radius: 25px;
    background-color: var(--products-background);
    padding: 25px;
    font-size: 1.2em;
    color: var(--text-white);
    text-align: justify;
}

/*Current sellers*/

.currentSellers{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.currentSellersTitle{
    padding-left: 15px;
    font-size: 2em;
    font-weight: bold;
    color: var(--titles-white);
    margin-bottom: 20px;
}

.currentSellerItem{
    width: 200px;
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 20px;
    border: 2px solid var(--products-border-hover);
    background-color: var(--products-background);
    border-radius: 25px;
}

.currentSellerPicture{
    width: 100%;
    height: 100px;
    display: flex;
}

.currentSellerPicture img{
    margin: auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.currentSellerName{
    font-size: 1.2em;
    font-weight: bold;
    color: var(--titles-white);
    text-align: center;
    margin-top: 10px;
}

/*Socials*/

.socials{
    width: min-content;
    display: flex;
    flex-direction: row;
    margin: 0 10px ;
    padding: 20px;
    border: 2px solid var(--products-border-hover);
    background-color: var(--products-background);
    border-radius: 25px;
    align-items: center;
    margin: auto;
    margin-top: 5px;
}

.socialsContainer{
    margin: auto;
    display: flex;
    flex-direction: row;
    width: min-content;
}

.socialsItem{
    display: flex;
    margin: auto;
    padding: 0 20px;
    filter: var(--navbar-buttons);
    /*border:red dotted 2px; /* For debugging purposes */
}

.socialsItem img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin: auto;
    transition: all .3s ease;
}

.socialsItem a{
    display: flex;
    margin: auto;
    /*border:red dotted 2px; /* For debugging purposes */
}

.socialsItem img:hover{
    scale: 1.1;
    transition: all .3s ease;
}



/*Support*/

.support{
    /*border: red dotted 2px; /* For debugging purposes */
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supportTitle{
    font-size: 2em;
    font-weight: bold;
    color: var(--titles-white);
    margin-bottom: 20px;
}

.supportText{
    font-size: 1.2em;
    color: var(--text-white);
    margin-top: 10px;
    text-align: center;
    margin: auto;
}




/*Mobile*/

@media (max-width: 768px) {
    .about{
        width: 90%;
    }

    .aboutFounder, .currentSellers{
        flex-direction: column;
        align-items: center;
    }

    .founderData, .currentSellers{
        width: 100%;
        flex-direction: column;
    }

    .founderItem, .currentSellerItem{
        width: 90%;
        margin: 10px auto;
    }

    .socials{
        width: 90%;
        flex-direction: column;
    }

    .socialsItem{
        padding: 0 10px;
    }

    .founderTitle{
        text-align: center;
    }

    .about{
        /*background-color: blueviolet;/**/
        min-height: 0vh;
        width: 80%;
        display: flex;
        flex-direction: column;
        margin: 30px auto;
        color: var(--text-white);
    }
}