@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
.animated {
    background-image: url(/img/home/logo-home2.png);
    background-repeat: no-repeat;
    background-position: center top;
    padding-top:95px;
    margin-bottom:60px;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
 }
 .textfade {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: "Righteous", sans-serif;
    font-size: calc(10px + 8vw);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-transform: uppercase;
    color: #fff;
    background-color: #2926229e;
    mix-blend-mode: multiply;
    opacity: 0;
    animation: fadeInText 3s 2s ease-out forwards;
}
.textfade2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: "Righteous", sans-serif;
    font-size: calc(10px + 1vw);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    white-space: nowrap;
    
    color: #fff;
    background-color: #2926229e;
    mix-blend-mode: multiply;
    opacity: 0;
    animation: fadeInText 4s 3s ease-out forwards;
}

@keyframes scaleImage {
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInText {
    100% {
        opacity: 1;
    }
}
 
 @-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
 }
 
 @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
 }
 
 .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
 }