﻿.copyright_rodape{
    color: #fff;
    font-size: 22px;
    text-align: right;
    /* display: inline-block; */
    margin-top: 15px;
    transition: all linear 0.3s;
    float: right;
}
.copyright_rodape:hover{
    color: #ff8100;
}
.logo_pizzaria1{
    
}

.overlay_co{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
        background: #2ade89;
    animation: 1s linear forwards  coFadeout;
     animation-delay: 2.2s;
}
.overlay_logo{
    color: #fff;
    font-size: 94px;
    animation: 1.5s linear forwards logoFadeOut;
    animation-delay: .5s;

}
.overlay_txt{
    display: block;
    text-align: center;
    margin-top: 40vh;
}
.overlay_txt span{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    font-style: italic;
    opacity: .7;
}

@keyframes coFadeout{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
        z-index:-1;
    }
}
@keyframes logoFadeOut{
    0%{
        opacity:1
    }
    100%{
        opacity:0;
    }
}
@keyframes logoFadeIn {
    0%{
        opacity:.8;
    }
    100%{
        opacity: 1;
    }
}

@media (max-width: 650px){
    .overlay_logo {
        font-size:50px;
    }
    .overlay_txt span{
        margin-bottom:10px;
        font-size:15px;
    }
}