ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop nav */
.desktop-nav {
    display: none;
}

/* Mobil nav */
.mobil-nav {
    background-color: #ffffff;
    padding: 1rem 0;
    display: block;
}

.mobil-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 0.5rem;
}

@media (min-width: 992px) {
    .mobil-nav {
        display: none;
    }

    .desktop-nav, #chart {
        display: block;
        position: fixed;
        top: 0;
    }

    .desktop-nav ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 1rem 2rem;
    }

    .desktop-nav ul li:last-child {
        margin-top: auto;
    }

    .desktop-nav > img {
        width: 200px;
    }

    .desktop-nav a {
        text-decoration: none;
        font-weight: 700;
        color: black;   
        font-size: 1.4rem;
        display: flex;
        align-items: center;
    }
    
    .desktop-nav a:hover {
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }
    
    .desktop-nav a:focus {
        outline: 2px solid #0c774a;
        outline-offset: 2px;
    }

    .desktop-nav a img {
        margin-right: 1rem;
    }
    
    /* chart */
    .my-chart {
        margin-top: 10%;
    }
}
