@media (min-width: 768px) {
    /* Make header nav a flex container */
    nav {
        position: static;
        height: auto;
        width: auto;
        background: none;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    /* Hide link text on desktop, keep icons */
    nav a {
        gap: 3px;
        color: #fff;
        transition: background 0.2s;
        font-size: 0; /* hides text but keeps Feather icons */
    }

    /* Make Feather icons slightly bigger on desktop */
    .feather {
        stroke-width: 1px;
        
    }

    nav a:hover {
        background: transparent;
        color: yellow;
    }

    nav ul li {
        border: none;
    }

    .active {
        border-right: none;
        color: orangered;
        background: none;
        stroke-width: 4px;
    }
    
    .header-buttons {
        display: flex;
        align-items: center;
        justify-content: left;
    }

    /* Hide hamburger on desktop */
    .hamburger-btn {
        display: none;
    }

    
    .links-container {
        display: block;
        margin-left: auto;
        height: auto;
        width: 400px;
    }
    
    .links-container img {
        height: 100%;
        width: 100%;
    }
}