@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Honk:MORF@15&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --font-destaque: "Honk", system-ui;
    --font-padrão: Arial, Helvetica, sans-serif;
    --font-normal: "Audiowide", sans-serif;
}


body {
    background-image: url('../imagens/android-back3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top bottom;
    
}

main {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 98vw;
    height: 98vh;
    
}

section {
    text-align: center;
    
}

section h1 {
    display: block;
    font-family: var(--font-destaque);
    font-size: 10vw;
    color: rgb(244, 249, 244);
}

section p {
    font-family: var(--font-normal);
    font-size: 3vw;
    color: orange;
    color: rgba(255, 221, 0, 0.797);
    font-weight: bolder;
    padding-bottom: 30px;
}


section > p > a {
    text-decoration: none;
    color: rgb(255, 191, 0);
    font-weight: bolder;
    background-color: rgba(0, 0, 0, 0.31);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 3px 4px 5px black;
    display: inline-block;
    animation: flutuar 1s ease-in-out infinite;

}

section > p > a:hover {
   transform: translateY(-7px);
    transition: transform 1s ease;
    background-color: rgba(0, 0, 0, 0.559);
   
} 
@keyframes flutuar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

footer p {
    text-align: center;
    color: rgba(255, 255, 255, 0.822);
    font-size: 1em;
    margin-top: -15px;
}