﻿.header {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

.nav-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-icon {
    cursor: pointer;
    display: none; /* Hide the hamburger icon on larger screens */
}

.hamburger-icon div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
}

/* Media Query for smaller screens */
@media screen and (max-width: 600px) {
    .hamburger-icon {
        display: block; /* Display the hamburger icon on smaller screens */
    }
    .nav-menu {
        display: none; /* Hide the navigation menu on smaller screens */
    }
    .nav-menu.active {
        display: flex; /* Display the navigation menu when active (hamburger icon clicked) */
        flex-direction: column;
    }
}
