@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Bebas+Neue&family=Cinzel&family=Cinzel+Decorative&family=Press+Start+2P&family=Special+Elite&family=Staatliches&display=swap');/*eslint-disable-line*/
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Alice&family=Bebas+Neue&family=Cinzel&family=Cinzel+Decorative&family=Press+Start+2P&family=Special+Elite&family=Staatliches&display=swap');/*eslint-disable-line*/
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap'); /* eslint-disable-line*/

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

body {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 15% 75% 10%;
    background-color: var(--backgroundMain);
}

header {
    padding: 1%;
    width: 100%;
    background-color: #313131;
    display: grid;
    height: 100%;
    grid-template-columns: 20% auto 20%;
    grid-template-rows: 100%;
}

header img {
    height: 90%;
    width: auto;
}

header li{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid rgb(0, 0, 0, .1)
}

.linkHeader {
    font-size: 30px;
    align-self: center;
    justify-self: center;
}


header .btnMobile{
    background: #313131;
    display: flex;
    font-size: 1rem;
    border: none;
    align-items: center;
    justify-content: center;
}

header .hamburguer{
    width: 20px;
    border-top: 2px solid white;
}

.hamburguer::after, .hamburguer::before{
    content: '';
    display: block;
    margin-top: 5px;
    width: 20px;
    height: 2px;
    background: currentColor;
}

.out span{
    display: none;
}

.menuFeed{
    display: block;
    position: absolute;
    width: 50%;
    top: 15vh;
    right: 0px;
    background: #313131;
    height: 0vh;
    transition: .6s;
    z-index: 4;
    visibility: hidden;
    overflow-y: hidden;
}

/*Corrigir chamada*/
nav.active .menuFeed{
    visibility: visible;
    overflow-y: auto;
    height: calc(100vh - 15vh);
}

header h1, a {
    color: white;
    text-decoration: none;
    font-family: Comfortaa, Arial, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.menuFeed a{
    padding: 1rem 0;
    margin: 0 1rem;
}


.footer {
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #313131;
    text-align: center;
    box-shadow:  0 0 1em var(--body);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index:5;
    padding: 1vh;
    font-size: 0.9rem;
    font-family: 'Nunito', Arial, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.footer,
a :visited {
    color: white
}

@media (min-device-width: 819px) {
    body {
        grid-template-rows: 15% 80% 5%;
    }
    
    .linkHeader {
        font-size: 50px;
    }

    header a {
        width: 100%;
        height: 100%;
        align-self: flex-start;
    }
    header .hamburguer{
        width: 40px;
        border-top: 2px solid white;
    }
    

    .hamburguer::after, .hamburguer::before{ 
        margin-top: 5px;
        width: 40px;
    }

    header button{
        display: none;
    }
    

    footer {
        font-size: 1vmax;
    }

}
