   

.testone {
    --sfondopari: white;
    --sfondodispari: lightgray;

    --testo-piccolo: 12px;
    --testo-medio: 20px;
    --testo-grande: 40px;

    width: 100%;
    padding-inline: 10%;
    padding-bottom: 40px;
    padding-top: 20px;
    text-align: center;
    background-color: var(--sfondopari);
    font-family: importante;
    font-weight: bold;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
}

.testone strong {
    color: var(--verde);
}

.testone h2 {
    font-weight: bolder;
    font-size: var(--testo-piccolo);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.testone h1 {
    margin: 20px;
    font-size: var(--testo-grande);
    letter-spacing: 0px;
    text-transform: uppercase;
}

.testone .testo {
    display: block;
    font-weight: normal;
    font-size: var(--testo-medio);
    letter-spacing: 0px;

    column-count: 2;
    column-gap: 40px;
    text-align: justify;
}


.testone img {
    width: 75px;
    height: 75px;
    animation: rotation 5s infinite linear;
    margin: 10px;
}

@media screen and (max-width: 750px) {
    .testone {
        --testo-piccolo: 10px;
        --testo-medio: 16px;
        --testo-grande: 30px;
        
    }

    .testone img {
        width: 50px;
        height: 50px;
        animation: rotation 10s infinite linear;
        margin: 10px;
    }

    .testone .testo {
        column-count: 1;
        text-align: justify;    
    }

}

@media screen and (min-width: 750px) and (max-width: 900px) {
    .testone {
        --testo-piccolo: 11px;
        --testo-medio: 18px;
        --testo-grande: 36px;
        
    }
}
