html, body, p, ul {
    margin: 0;
    padding: 0;
}

ul, a {
    list-style: none;
    text-decoration: none;
}

body {
    height: 100%;
}

.main__wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100svh;
}

.header__wrapper {
    height: fit-content;
    display: flex;
    margin: 1rem;
}

.header__wrapper nav {
    margin-left: auto;
}

.header__wrapper nav ul {
    display: flex;
    gap: 1rem;
}

.content__wrapper {
    margin: 1rem;
}

.footer__wrapper {
    height: fit-content;
    margin: 1rem;
}