@media only screen and (min-width: 1024px) {

    :root {
        /* Colors */
        --font-primary-color: #1D1D1F;
        --font-secondary-color: #ffffff;
        --font-tertiary-color: #6E6E73;
        --bg-primary-color: #F5F5F7;
        --bg-secondary-color: #000000;
        --bg-tertiary-color: #999999;
        --primary-color: #0071E3;
        --secondary-color: #D2D2D7;

        /* Font sizes */
        --font-title: 2.5rem;
        --font-heading: 1.75rem;
        --font-sub-heading: 1.5rem;
        --font-medium: 1.25rem;
        --font-small: 1rem;

        /* Font weight */
        --font-weight-thin: 300;
        --font-weight-normal-thin: 400;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --font-weight-extrabold: 900;

        /* Font Style */
        --font-family-content: "Inter", sans-serif;
    }

    /* Hero */
    .content p {
        width: 100%;
    }

    /* Contact Page */
    .contact-main,
    .about section,
    #home-page section:not(:first-of-type),
    #favorites-content {
        max-width: 60%;
    }
}