@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');
*{
    margin: 5px;
    padding: 5px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: url(../images/logo1.png) ;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfbfac0;
    background-size: 50%;
    animation: float 40s linear infinite alternate;
    background-repeat: no-repeat;
    
    
}
@keyframes float {
    from{background-position: 0 0 ;}
    to{background-position: 100% 100%;}
}
section{
    padding: 20px;
    background-color: #f0b207e1;
    width: 500px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: -20px;
    text-align: center;
    box-shadow: 2px 15px 20px rgba(61,61,61,.4);
}

header h3{
    color: #ebecf0;
    font-size: 1.rem;
}
main{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}
main a{
    background: #061ef7c7;
    padding: 9px 0;
    text-decoration: none;
    color: #fff;
    box-shadow: 10px 10px #1a13066b;
    transition: all .5s ease-in-out;
    border-radius: 3px;
    transition: transform 1.6s;
}
main a:hover{
    opacity: .85;
    background-color: #130ff0de;
    border-radius: 20px;
    transform: scale(0.9);
}
.footer{
    position: absolute;
    bottom: 10px;
    color: #fff;
    font-size: 1rem;
}
@media (max-width: 520px){
    section{
        width: 90%;
        padding: 30px;
    }
    header img{
        width: 200px;
    }
    header h3{
        font-size: 1.3rem;
    }
    main{
        gap: 15px;
    }
    main a{
        padding: 10px 0;
        box-shadow: 5px 5px #380bd9;
    }
}
p{
    font-family: arial black;
    color: rgb(25, 0, 255);
    
}

i{
    font-family: arial black;
    color: rgb(255, 174, 0);    
}

a#voltar{
    color: rgb(42, 2, 240);  
    position: absolute;
    font-size: 1rem;
    margin-top: -490px;
    margin-left: 10px;
    text-decoration: none;
    box-shadow: 3px 3px 3px 3px #380bd9;
    border-radius: 5px;
    
}

a#voltar:hover{
    font-size: 1.1rem;
    color: rgb(250, 250, 250);  
}
