* {
    margin: 0;
    padding: 0;
    font-family: 'ROBOTO';
}

:root {
    --element: #202020;
    --textInElement: whitesmoke;
    --textPrimary: black;
    --textSecondary: #545454;
    --highlighted: #00c04b;
    --highlightedSubtle: #f2f2f6;
}

header {
    height: 4rem;
    background-color: var(--element);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

header > div {
    height: 100%;
    display: flex;
    align-items: center;
}

header>div>a {
    padding: 1rem 3rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--textInElement);
    font-weight: bold;
    text-align: justify;
}

footer {
    height: 4rem;
    background-color: var(--element);
    color: var(--textInElement);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

footer>img {
    height: 95%;
}

.title {
    font-size: 1.33rem;
    text-align: center;
    margin-block-end: .25rem;
    font-weight: bold;
}

.title2 {
    font-size: 1.20rem;
    text-align: center;
    margin-block-end: .15rem;
}

main {
    width: 95vw;
    margin-inline: 2.5vw;
    margin-block: .5rem;
    min-height: calc(100vh - 9rem); /*header & footer compensation*/
    min-height: calc(100dvh - 9rem); /*if dvh is supported*/
}

button {
    background-color: var(--element);
    color: var(--textInElement);
    box-shadow: none;
    border: none;
    padding: .5rem;
    font-size: 1rem;
    border-radius: .33rem;
    cursor: pointer;
}

button > a {
    color: var(--textInElement);
    text-decoration: none;
    font-size: 1rem;
}

@media (width >= 1080px) {
    main {
        width: 1080px;
        margin-inline: auto;
    }
}