
.colore-bianco,
.colore-bianco h1,
.colore-bianco h2,
.colore-bianco h3,
.colore-bianco h4,
.colore-bianco h5,
.colore-bianco h6,
.colore-bianco a,
.colore-bianco a.button {
    color: #fff !important;
}

.fondo-colorato{
    background-color: var(--color-tender);
}
.fondo-gradiente{
    background: linear-gradient(90deg, rgb(60, 154, 157) 0%, rgb(50, 113, 132) 100%);
}
.testo-gradiente {
    background: linear-gradient( to right, rgb(60, 154, 157), rgb(50, 113, 132), rgb(60, 154, 157) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testo-gradiente.animato {
    background: linear-gradient( to right, rgb(60, 154, 157), rgb(50, 113, 132), rgb(60, 154, 157) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 150% 150%;
    animation: gradient 4s ease infinite;
    display: inline-block;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

