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

* {
    font-family: "Raleway", "Rubik", 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
}

body {
    padding-top: 5.8rem;
    background-color: #000;
}

.header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 7rem;
    align-items: center;
    border-bottom: 1.3px #101110 solid;
    position: fixed;
    width: 100%;
    background-color: #000;
    z-index: 10;
    top: 0;
}

.logo {
    height: 5em;
    max-height: 8em;
}

.menu ul {
    display: flex;
    flex-direction: row;
    font-weight: bold;
}

.menu ul li {
    font-size: 1.1rem;
    padding: 0.5rem;
}

.menu .redes li {
    cursor: pointer;
    color: #ffffff;
    font-size: 1.7rem;
    padding: 0.0025rem;
    text-decoration: none;
}

.menu a {
    cursor: pointer;
    margin: 13px;

    color: #ffffff;
}

a:hover {
    color: #697565;
    font-size: 1.2rem;
    transition: 0.6s;
}

.redes li a:hover {
    color: #697565;
    font-size: 1.8rem;
    transition: 0.6s;
}

.fa-x-twitter:hover,
.fa-behance:hover,
.fa-linkedin:hover,
.fa-instagram:hover {
    color: #697565;
    transition: 0.6s;
    transform: scale(1.3)
}

.rodape {
    display: flex;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    height: auto;
    max-height: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
}

main {
    position: relative;
    padding-bottom: 5rem;
}


@media(max-width: 1380px) {

    .logo {
        height: 4em;
        max-height: 5em;
    }

    .menu ul li {
        font-size: 0.8rem;
    }

    .menu .redes li {
        cursor: pointer;
        color: #ffffff;
        font-size: 1.2rem;
        padding: 0.0020rem;
        text-decoration: none;
    }

    .menu a {
        cursor: pointer;
        margin: 9px;
        padding: 6px;
        color: #ffffff;
    }

    a:hover,
    .redes li a:hover {
        color: #697565;
        font-size: 1.1rem;
        transition: 0.6s;
    }

}

@media(max-width: 750px) {
    .logo {
        height: 4rem;
        max-height: 4rem;
        order: -1;
        right: 0;
    }

    .header nav {
        height: 9.1rem;
    }

    body {
        padding-top: 8rem;
    }
}

@media(max-width: 680px) {
    .header nav {
        flex-direction: column;
    }

    .menu ul li {
        font-size: 0.6rem;
        padding: 0.5rem;
    }

    a:hover,
    .redes li a:hover {
        color: #697565;
        font-size: 0.8rem;
        transition: 0.6s;
    }
}