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


  
/* whole nav bar */
.header {
    position: sticky; top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-100%);
    padding: 20px 50px;
    z-index: 1000;
    background-color: rgb(255, 255, 255) !important; 
    
}

.header {
    animation: dropDown 0.5s ease-out forwards;
}

@keyframes dropDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}



.logo {
height: 75px;
width: 75px;
filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4)) ;
   
}

.header a:hover {
color:gray !important;
}

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

.bar {
    display: flex;
    width: 30px;
    height: 4px;
    color: black !important;
    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;
}

.bar {
    background: black !important;
}


.navBar a {
    text-decoration: none;
    color: black !important;
    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;
}

.credit {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 15px;
    color: black;
    z-index: 10;
    margin-bottom: 5px;
}
