html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #201e1f;
    color: #fff;
    background-image: url("../images/header-bg.png");
    background-size: auto;
    background-position: top;
    background-repeat: repeat-x;
}

a, .sn-link {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

a:hover, .sn-link:hover {
    color: yellow;;
    text-decoration: none;
    cursor: pointer;
}

.container {
    margin: auto auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.construcao {
    color: #ec3338;
}

.header {
    min-height: 200px;
    padding: 0 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .contatos {
    width: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    min-height: 60px;
    font-size: x-large;
}

.menu-header span {
    cursor: pointer;
    width: 15%;
    min-width: 120px;
    max-width: 300px;
    margin: 1rem;
}

.body {
    min-height: 400px;
    text-align: center;
    margin: auto;
}

.footer {
    font-size: small;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}

.footer .endereco {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer .contatos {
    width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile */
@media (max-width: 575px) {

    .menu-header span {
        cursor: pointer;
        min-width: 90%;
        max-width: 90%;
        margin: 0.2rem;
    }

    .lista-contatos {

    }

    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer .endereco {
        justify-content: center;
        align-items: center;
    }

    .footer .contatos {
        margin-top: 2rem;
    }
}