header {
    background-color: var(--background);
    border-bottom: 1px solid var(--muted-foreground);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding-left: 6rem;
    padding-right: 6rem;

    padding-top: 0.6rem;
    padding-bottom: 0.6rem;

    margin-bottom: 2rem;
}

header img {
    width: 60px;
    height: 60px;
}

header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 6rem;
}

header nav ul li a {
    color: var(--popover-foreground);
    font-size: 1rem;
    font-size: Josefin sans;
    text-decoration: none;
    transition: all 0.3s;
}

header nav ul li a:hover {
    color: var(--primary);
}

@media screen and (max-width: 1100px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 750px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }
}
