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

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
}

header {
    background-color: rgb(40, 175, 58);
    height: 100vh;
    padding: 2em 3em;
    margin-right: 4em;

    display: flex;
    flex-direction: column;
    gap: 2em;
}

header nav ol {
    list-style-type: none;
}

header nav ol li a {
    text-decoration: none;
    font-size: 1.4em;
    color: white;
}

.container {
    margin: 0 auto;
    max-width: 80em;
}

section {
    margin-top: 4em;
    display: flex;
    justify-content: space-between;
}

#relatorios {
    margin-top: 4em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
    row-gap: 2rem;
}

#relatorios h2 {
    flex-basis: 100%
}

#relatorios div {
    border: 1px solid gray;
    flex-basis: 15em;
    display: flex;
    flex-direction: column;
}

#relatorios div p {
    text-align: center;
    padding: 3em 1em;
    background-color: rgb(219, 219, 219);
}

#relatorios div figure {
    display: flex;
    gap: 1em;
    justify-content: center;
    padding: 2em 0;
}
#relatorios div figure img {
    height: 1.3em;
}