* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

html {
    height: 100%;
}

body {
    background: url(../img/rendimento.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
}

body::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
    z-index: -100;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

[logo] {
    max-width: 193.05px;
    margin-left: 120px;
}

.subtitulo {
    font-size: 18px;
    margin-right: 80px;
}

h2 {
    align-self: center;
}

h2, .subtitulo {
    font-weight: 300;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0 auto;
    height: 450px; 
    width: 100vw; 
}

ul {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    list-style-type: none;
}

li {
    display: flex;
    align-items: center;
    height: 150px;
    width: 200px;
    justify-content: center;
    border-radius: 10px;
    border: solid 1px rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.185);
    border-color: rgb(253, 249, 192);
} 

li:hover {
    box-shadow: 0 0 25px rgba(226, 226, 226, 0.562);
}

a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    width: 200px;
    height: 100%;
    color: #fff;
}

p {
    text-align: center;
}

@media (max-width: 800px) {
    header {
        flex-direction: column;
        width: 100vw;
        justify-content: space-between;
        align-items: center;
        height: 150px;
        margin-bottom: 40px;
    }

    [logo] {
        margin: 0;
        padding: 0;
    }

    h2, .subtitulo {
        font-size: 19px;
        background-color: rgba(0, 0, 0, 0.247);
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        height: 400px;
    }

    ul {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        list-style-type: none;
        width: 90%;
        height: 300px;
    }

    li {
        width: 100%;
        height: 60px;
    }

    body {
        background-repeat: repeat;
    }

}


