:root {
    --dw-orange: #ff8243;
    --dw-brown: #46210e;
    --dw-light-brown: #ffd07f;
    --dw-gray: #fffaf2;
    --dw-beige: #f2e9da;

    --body-bg: #1f1f1f;
}


body, html {
    background-color: var(--body-bg);
    color: var(--dw-gray);
    height: 100vh;
    margin: 0;

    font-family: Calibri, sans-serif;
}

main {
    outline: 1px solid yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

h1 {
    font-size: 2rem;
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
        width: 100%;
    }
}

a {
    text-decoration: underline;
    color: var(--dw-orange);
}

a:visited {
    color: var(--dw-orange);
}
