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

.sessao {
    height: 100vh;
}

header {
    background-color: #faf9f9;
}

#logo {
    display: flex;
    height: 80px;
    width: 80%;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid rgb(240 240 240 / 94%);
}

#nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
    flex-wrap: wrap;
}

#nav a,
#sub-nav {
    text-decoration: none;
    padding: 0px 15px;
    border-bottom: 2px solid #ccc8c8;
    border-radius: 10px;
    color: #4a4444;
    font-weight: 700;
    text-shadow: 1.2px 1px 1px #b9b8b8;
}

#sub-nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
    flex-wrap: wrap;
    border: 1px solid #e7e1e1;
    font-size: 15px;
}

#nav>a {
    margin: 5px 0px;
}

#nav>div {
    margin: 5px 0px;
}