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

*{
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    background: url('/img/fundo1.jpg') no-repeat center center fixed;
    background-size: cover;
    font-size: 65%rem;
    animation: mover-fundo 20s ease infinite;
    animation-direction: alternate;
    animation-delay: 2s;
}

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

.header{
    background: #0015cfa2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    font-family: Audiowide;  
    font-size: 2.2em;
    text-shadow: 5px 5px black;
    z-index: 2;  
}

.header a{
    text-decoration: none;
    color: #ffffffd8;    
    padding: 5px;
}

.header a:hover{
    background-color: #0015cf;
}

.menu{
    display: flex;  
    z-index: 3;     
}

.menu li{
    margin-left: 10px;
}

.menu li a{
    display: block;
    padding: 10px;   
}



.central{
    position: absolute;
    width: 90%;
    height: 70%;
    display: flexbox;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
    color: white;
    font-family: Comfortaa;
    font-size: 1.8em;
    text-shadow: 3px 3px 3px black;
}

.central p{
    background-color: #0015cfa2;
    margin: 3%;
    padding: 3%;
}

.central img{

    height: 25%;
    width: 25%;
    padding: 3%;
}

.central a{
    text-decoration: none;
    color: red;
}

#rodape{
    position: absolute;
    bottom: 0%;
    display: flex;
    background: #0015cfa2;
    width: 100%;
    height: 8%;
    color: rgba(255, 255, 255, 0.795);
    font-family: Audiowide;
    font-size: 1.6em;
   
    text-shadow: 2px 2px black;
    padding: 15px;

}



