/*
Theme Name: Guardiões das Águas
Author: Thiago Waib "JJ" Castello Branco
Description: Água
Version: 1.0
*/
body {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
}

@media screen and (max-width: 900px) {
    body {
        max-width: 100vw;
        max-height: 100vh;
        overflow-y: hidden;
        overflow-x: hidden;
        flex-direction: column;
    }
}

header {
    width: 100%;
    background: #000000;
}

header div {
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
}

@media screen and (max-width: 900px)  {
    header div {
        padding: 12px 8px 8px 8px;
    }
}

header div h2 {
    font-size: 16px;
}

@media screen and (max-width: 900px)  {
    header div h2  {
        font-size: 14px;
    }
}

header div h1 {
    font-size: 24px;
}

@media screen and (max-width: 900px)  {
    header div h1  {
        font-size: 18px;
    }
}

footer {
    width: 100%;
    background: #000000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 0;
}

@media screen and (max-width: 900px) {
    footer {
        display: none;
    }
}

nav {
    display: none;
}

@media screen and (max-width: 900px) {
    nav {
        width: 100%;
        background: #000000;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

footer a,
nav a {
    font-size: 12px;
    color: #A9A9A9;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition-duration: .2s;
    transition-property: color;
    align-items: center;
    display: flex;
    margin: 0 36px;
}

@media screen and (max-width: 900px) {
    nav a {
        padding: 0 0 8px 0;
        margin: 0 16px;
    }
}

footer a:hover{
    color: #C9C9C9;
}

footer a i{
    font-size: 12px;
    color: #A9AA9A;
    padding-right: 2px;
}