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

    :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;
    }

    /* Navigation */
    .navbar {
        justify-content: center;
    }

    .menu {
        display: flex;
        position: static;
        font-size: var(--font-small);
        justify-content: space-evenly;
        width: 55%;
        height: auto;
        background-color: transparent;
        text-align: center;
    }

    .menu li a {
        margin: 0 auto;
        font-size: .85rem;
        color: var(--bg-tertiary-color);
    }

    .menu li:hover {
        background-color: transparent;
    }

    .menu li a:hover {
        color: var(--font-secondary-color);
    }

    .menu-icon {
        display: none;
    }

    .menu-active {
        flex-direction: row;
    }

    /* Hero */
    #hero {
        height: 100vh;
    }

    .content p {
        width: 80%;
    }

    #recipesContainer {
        padding: 0;
    }

    /* Main */
    section {
        margin: 0 auto;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
        padding: 3rem 4rem;
    }

    .footer-container>div {
        padding: 0 1rem;
    }

    .footer-container h4 {
        font-size: 1.3rem;
    }

    .footer-info p,
    .my-info p {
        font-size: 1rem;
    }

    .social-icons {
        width: 30px;
        height: 30px;
    }

    /* Contact Page */
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-main,
    .about section,
    #home-page section:not(:first-of-type),
    #favorites-content {
        max-width: 600px;
        margin: 2rem auto;
    }

    form {
        padding: 2rem;
    }

    /* About Page */
    .about-header h1 {
        font-size: 2.2rem;
    }

    .about h2 {
        font-size: 1.6rem;
    }

}