html, body {
    margin: 0;
    height: 100%;
   overflow: hidden;
  }


  
/* whole nav bar */
.header {
    position: absolute;
    top: 0;

    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 50px;
    z-index: 1000;
    background-color: rgb(0, 12, 38, 0.5);
    
}



.logo {
    height: 75px;
    width: 75px;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.9)) brightness(0) invert(1);

    
}




.header a:hover {
color:gray
}

/* mobile hamburger navbar */
#hamburgerIcon {
    display: none;
    position: absolute;
    right: 50px;
    top: 25px;
}

.bar {
    display: flex;
    width: 30px;
    height: 4px;
    background: white;
    border-radius: 2px;
   
}


.mobileMenu {
    background-color: rgba(75, 74, 74, 0.7);
    border-radius: 15px;
    text-decoration: none;
    list-style: none;
    position: absolute;
    padding: 15px;
    top: 20px;
    right: 20px;
    font-family: sans-serif;
    font-weight: bold;
}

.mobileMenu li {
    margin: 10px 0;
}

.mobileMenu a {
    color: white;
    text-decoration: none;
}
.mobileMenu {
    display: none;
}
.mobileMenu.open {
    display: block;
}


.navBar {
    display: flex;
    gap: 40px;

}

@media (max-width:600px) {
    .navBar {
        display: none;

    }
    
    .header {
        padding: 20px 50px;
    }
    #hamburgerIcon {
    display: flex;
    position: absolute;
    right: 20px;
    margin-top: 15px;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    }
}

.active .bar1 {
    transform: rotate(45deg) translate(7px, 7px);
}

.active .bar2 {
    opacity: 0;
}

.active .bar3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navText {
    text-decoration: none;
}



.navBar a {
    text-decoration: none;
    color: white;
    font-family: 'Copperplate', 'Copperplate Gothic Light', 'Copperplate Gothic Bold', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    margin-top: -25px;
}
