@import 'colors.css';

.headerContent {
    background-color: var(--header-footer-grey-dark);
    color: var(--logo-grey-light);
    padding: 0.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    width: 8em;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 3vh;
}

nav ul li a {
    text-decoration: none;
    color: var(--logo-grey-light);
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--logo-salmon);
}


.hamburgerMenu{
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 3vh;
    height: 0.3vh;
    background-color: var(--logo-salmon);
    margin: 0.5vh 0;
}

/* @media only screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburgerMenu {
        display: flex;
    }
} */

/* @media only screen and (max-width: 768px) {
    nav ul {
        display: none;
    }

    nav .active {
        display: flex;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .hamburgerMenu {
        display: flex;
    }
} */