:root {
    --color-background: #161317;
    --color-text: white;
    --font-primary: 'rubik', sans-serif;
    --font-secondary: 'rubik', sans-serif;
}

@font-face {
    font-family: 'rubik';
    src: url('Rubik-VariableFont_wght.ttf') format('truetype');
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
}

aside {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
}

footer {
    font-size: 0.8rem;
}

.law-stuff {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-text);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-background);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.imp-main {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.imp-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
}

footer {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-right: 3rem;
}

/* ===== Components ===== */
.logo {
    display: block;
    margin: 0 auto;
    image-rendering: pixelated;
    height: 15vw;
}

.imp-header > a > .logo {
    height: 5vh;
}

ul {
    list-style-type: none;
}

aside {
    padding: 2rem 5rem 5rem 5rem;
    text-align: center;
}

.law-stuff {
    padding-bottom: 1rem;
}

@media (min-width: 1024px) {
    body {
        flex-direction: row;
    }

    main {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    aside {
        padding: 0;
    }

    .imp-main {
        padding: 2rem 5rem 5rem 5rem;
    }

    .logo {
        height: 4rem;
    }
}