*{
    font-family: var(--main-font);
}

:root{
    --social-square-max-with: 142px;
}

.logo-and-title-box{
    display: flex;
    gap: 5px;
    text-align: center;
}

/*
.title{
    color: var(--font-color);
    font-size: 40px;
    text-transform: uppercase;
}
*/

.paragraph-box{
    color: var(--font-color);
    padding: 0 10px 0 10px;
}

.paragraph-image{
    width: 100%;
}

.button-container{
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.category-button{
    border-radius: 10px;
    width: 95%;
    max-width:300px;
    height: 70px;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 0 20px 0 20px;
    text-wrap: nowrap;
    display: flex;
    background: var(--btn-1-background);
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.category-button-text{
    color: var(--btn-1-text-color);
}
.category-button-logo{
    font-size: 20px;
}
.category-button[data-special]{
    /*background: var(--btn-1s-background);*/
}
.category-button[data-special] > .category-button-text{
    background: var(--btn-1s-text-background);
    color: var(--btn-1s-text-color);
    background-clip: var(--btn-1s-text-background-clip);
}

 
/* the code under this line is active when screen goes over the specified px dimension ----------------------------------------------------------------------------*/
@media only screen and (min-width: 600px){

    #index{
        width: 350px;
    }

    .small-buttons-section{
        gap: inherit;
        margin-right: 0;
    }

}


/* the code under this line is active when screen goes over the specified px dimension after "min-width:" ----------------------------------------------------------------------------*/
@media only screen and (min-width: 1200px){
    /* DESKTOP ----------------------------------------------------------------------------------------------*/
    
}
