nav {
    float: left;
    position: fixed;
    width: fit-content;

    margin-top: 10px;
    padding: 10px 30px;
    background-color: var(--secondary-color);
    text-align: right;
    font-size: 30px;
    font-family: "Great Vibes", Arial, Helvetica, sans-serif;
    color: var(--background-color);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 3;
}

nav a {
    color: var(--background-color);
    text-decoration: none;
}

nav a:hover {
    color: var(--tertiary-color);
}

.nav-header {
    font-family: var(--font-family-secondary);
    font-size: 25px;
    font-weight: 400;
}

.nav-header a {
    margin-bottom: 20px;
}

nav li {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style-type: none;
    font-family: var(--font-family-secondary);
    font-weight: 300;
    font-size: 18px;
}

@media (max-width: 1012px) {
    .hamburger {
        display: block;
        position: absolute;
        left: 20px;
        top: 20px;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: 0.4s;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
    }
}

@media (max-width: 565px) {
    .hamburger {
        left: 20%;
        position: relative;
        top: 3px;
    }
}