@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;   
}

.flex{        
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 750px;
    margin: 5% auto;
    z-index: 4;
}

.quadro{    
    flex: 1 1 160px;
    margin: 15px;
    background: #0015cfa2; 
    font-family: Audiowide;  
    color: rgba(255, 255, 255, 0.795); 
    font-size: 1.6em;
    
    text-shadow: 5px 5px black;
    padding: 15px;
    border-radius: 15%;
    cursor: pointer;
    transition: 0.6s;
}

.quadro img{    
    max-width: 100%;
    display: block;        
}

.quadro p{
    text-align: center;
}

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

#rodape{
    position: inherit;
    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;
}



