* {
    box-sizing: border-box;
}

:root {
    --color-background: #e6e6e6;
    --color-link: #080707;
    --color-link-border: #5588ff;
    --color-text: #080707;
    --footer-height: 3rem;
    --footer-color-background: rgba(221, 221, 221, 0.45);
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-background: #0d0c0c;
        --color-link: #e4e4e4;
        --color-link-border: #5588ff;
        --color-text: #fbfbfb;
        --footer-color-background: rgba(0, 0, 0, 0.5);
    }
}

html {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

body {
    color: var(--color-text);
    margin: 0 auto;
    padding: 0;
}

a {
    border-bottom: 2px solid var(--color-link-border);
    color: var(--color-link);
    display: inline-block;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
}

a:hover {
    border-bottom: 2px dotted var(--color-link-border);
}

body {
    margin: 0 auto;
}

.c-content {
    align-items: center;
    font-family: 'Anton', sans-serif;
    font-size: 22vh;
    display: flex;
    height: calc(100vh - var(--footer-height));
    justify-content: center;
    line-height: 1;
    margin: 0 auto;
    max-width: 68rem;
    text-align: center;
    text-transform: uppercase;
}

.c-content__inner {
    padding: 1.5rem;
}

.c-footer {
    align-items: center;
    background-color: var(--footer-color-background);
    display: flex;
    font-size: 0.85rem;
    height: var(--footer-height);
    inset: auto 0 0 0;
    justify-content: center;
    padding: 1rem 1.5rem 1rem;
    position: fixed;
    width: 100%;
}
