@font-face {
    font-family: 'OldSansBlack'; /* Define the font-family name once */
    src: url("../fonts/OldSansBlack.ttf");
}

:root{
    --color-text: #383d39;
}

* {
    font-family: 'OldSansBlack', sans-serif; /* Use the defined font-family name */
}
body{
    background-image: url("../img/bg-condito-2.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow-x: hidden;
}



.social i{
    color: var(--color-text);
    font-size: 24px;
}
.social img{
    width: 30px;
}

#logo-container{
    background-image: url("../img/condito-fascia-centrale.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-container img{
    max-width: 30%;
}

#cercasi-title{
    color:  #fff;
    font-size: 59px;
    line-height: 1;
}

#cercasi-desc{
    color:  #fff;
    font-size: 28px;
    line-height: 1;

}

#cercasi-btn{
    color: #fff;
    border: 3px solid #fff;
    padding: 10px 16px;
    font-size: 32px;
    text-decoration: none;
}


#social{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-image: url("../img/barra-bassa.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow-x: visible;

    padding: 20px 0;
}

#address{
    color: var(--color-text);
    font-weight: 400;
    font-size: 22px;
}

#address .thin{
    font-weight: 400;
}


@media screen and (max-width: 768px) {
    #logo-container{
        background-image: unset;
    }
    #logo-container img{
        max-width: 80%;
    }

    #cercasi-title{
        font-size: 32px;
    }

    #cercasi-desc{
        font-size: 16px;
    }
    #cercasi-btn{
        font-size: 20px;
    }

    #address{
        color: var(--color-text);
        font-weight: 400;
        font-size: 18px;
    }
}