/* Day Color Variables */
:root {
    --background: #EDE2D5;
    --body: #776B5C;
    --link: #D87C0A;
}

html {
    font-size: 1.25rem; /* 20 px */
    height: 100%;
    max-width: 24.25rem;
}

body {
    font-family: 'Recursive', '-apple-system', Roboto, Verdana, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: var(--body);
    /* #10171E to #2F343A */
    background-color: var(--background);
    /* Gradient */
    /* background-image: linear-gradient(#10171E, #2F343A); */
    max-width: 96%;
    margin: 1.6rem;
  }

h1 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

a {
    font-weight: 600;
    color: var(--link);
    text-decoration: none;
}

ul {
    margin: 2em 0 0 0;
    padding: 0;
}

li {
    font-size: 0.8em;
    list-style-type: none;
    display: inline;
    margin-right: 1em;
}



/* 1024px or larger */
@media (min-width: 1024px) {
    html {
        max-width: 40rem;
    }
    
    body {
        margin: 4.8rem;
    }
}

/* Night Color Variables */
@media screen and (prefers-color-scheme: dark) {
    :root {
        --background: #202B37;
        --body: #BFD6EE;
        --link: #4387D2;
    }
}