body{
    font-family: 'Open Sans';
}
.head-blog{
    width: 80%;
    margin-left: 10%;
    aspect-ratio: 1902 / 1080;
    overflow: hidden;
    position: relative;
    background-image: url(../images/stndb.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contenitore{
    width: 70%;
    margin-left: 15%;
}
.testo-head-blog{
    width: 45%;
    position: absolute;
    height: 140px;
    background-color: darkorange;
    right: 0;
    top: 50%;
    margin-top: -100px;
    padding: 20px;
    color: white;
    font-size: 40px;
    font-family: 'Anton';
}
.cont-art{
    position: relative;
    width: 70%;
    margin-left: 15%;
    margin-top: -20px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.box-art{
    width: calc(25% - 20px);
    background-color: black;
    color: white;
    height: 320px;
    margin-bottom: 20px;
}
.istantanea{
    width: 100%;
    background-color: white;
    height: 320px;
    box-shadow: 0px 1px 10px #b1b1b1;
    border: solid thin #e1e1e1;
    color: #333;
    padding: 10px;
    font-weight: 200;
    font-size: 18px;
    position: relative;
}
.img-istantanea{
    background-color: #333;
    width: 100%;
    height: 230px;
    margin-bottom: 10px;
    overflow: hidden;
    object-position: center;
}
.img-istantanea>img{
    min-height: 100%;
}
.etichetta{
    background-color: orange;
    position: absolute;
    left: -5px;
    top: 180px;
    width: 50%;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: white;
}
.titolo{
    font-size: 30px;
    font-family: 'Anton';
    color: #af3b89;
    font-weight: 500;
}
.titolo-articolo{
    font-family: 'Open Sans';
    color: black;
    font-size: 25px;
    font-weight: 700;
}
.sottotitolo-articolo{
    font-family: 'Open Sans';
    color: #af3b89;
    font-size: 20px;
    font-weight: 300;
}
@media screen and (max-width:768px){

    .box-art{
        width: calc(100% - 20px);
        background-color: black;
        color: white;
        height: 320px;
        margin-bottom: 20px;
    }

    .cont-art{
        position: relative;
        width: 70%;
        margin-left: 15%;
        margin-top: 20px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .testo-head-blog{
        width: 100%;
        position: absolute;
        height:max-content;
        background-color: darkorange;
        right: 0;
        top:0;
        bottom: 0;
        margin-top: auto;
        padding: 10px;
        color: white;
        font-size: 20px;
        font-family: 'Anton';
        display: none;
    }
    
    .contenitore{
        width: 90%;
        margin-left: 5%;
    }
}