body, html {
    font-size: 16px;
    background-color: var(--white);
    margin: 0;
}

/* Typography */

:root {
    --base-font-size: 18;
}
  
html {
    font-size: calc(var(--base-font-size) * 1px);
    body {
        a,
        span {
            font-family: var(--inter);
        }

        a:hover {
            text-decoration: underline;
        }
    
        h1 {
            font-family: var(--garamond);
            color: var(--gray-text);
            font-size: 2rem;
        }

        h2 {
            font-family: var(--inter);
        }
    
        label {
            font-family: var(--garamond);
            color: var(--dark-blue);
            font-size: 1.5rem;
            font-weight: 600;
        }
    
        input {
            font-family: var(--garamond);
            color: var(--dark-blue);
            font-size: 1.3rem;
    
            &:focus-visible {
            outline: none;
            }
        }
    }
}

/* Header */

nav {
    background-color: var(--header-blue);
    display: flex;
    justify-content: space-between;
    padding: 2rem 3.85rem 2.65rem;
    position: relative;

    a:link,
    a:visited,
    a:hover,
    a:active {
        color: var(--white);
        text-decoration: none;
    }

    .banner-link {
        align-items: center;
        color: var(--white);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        font-size: 1.3rem;
        gap: .4rem;
        text-align: center;
    }

    #top-link {
        font-family: var(--inter);
        font-size: 3rem;
        text-decoration: none;

        @media screen and (min-width: 1024px) {
            font-size: 1.3rem;
        }
    }

    img {
        width: 9rem;
        @media screen and (min-width: 1024px) {
            width: 70px;
        }
    }

    #links {
        display: flex;
        align-items: center;
        padding-top: 2rem;
        font-size: 2.4rem;

        @media screen and (min-width: 1024px) {
            font-size: 1rem;
        }
    }
}