body{
    margin:0;
    background-color: #ECE3E4;
    font-family: Arial, sans-serif;
    
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0 8px 0;
    background-color: #DFCCC6;
    width: 100%;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
   /* position: fixed;
    top: 0;
    left: 0;
    z-index: 50;*/
    max-height: 150px;
}
.navbar .bar {
    background-color: black;
    height: 4px;
    width: 36px;
    margin: 3px;
    border-radius: 10px;
}
.navbar .hamburger {
    height: 50px;
    width: 50px;
    display: none;
}
.navbar .hamburger:hover {
    cursor: pointer;
}
.mobileNav {
    width: 110px;
    font-size: 20px;
    background-color: #DFCCC6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: -160px;
    z-index: 2;
    padding: 16px;
    transition: transform 0.5s;
}
.mobileNav a {
    text-decoration: none;
    color: black;
    margin: 16px 0;
    
}
.mobileNav a:hover {
    text-decoration: underline;
}
.openDrawer {
    transform: translateX(-160px);
}
h1 {
    font-size: 40px;
}
.navbar a {
    width: 30%;
}
.navbar img {
    width: 60%;
    margin-top: 0px;
    margin-left: 20%;
    max-height: 195px;
    max-width: 305px;
}

.menu {
    display: flex;
    width: 65%;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.menu a {
    
    color: var(--primary-accent);
    margin: 0 var(--spacing-md);
    font-weight: bold;
    font-size: 25px;
    text-decoration: none;
    padding: 0 var(--spacing-lg);
}

.menu a:hover  {
    text-decoration: underline;
    
}

@media only screen and (max-width: 1000px) {
    .navbar .menu li a{
        font-size: 20px;
    }
    
}



@media only screen and (max-width: 840px) {
    .navbar img {
        width: 110%;
    }
    .navbar .menu {
        display: none;
    }

    .navbar .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 40px;
    }

}

.animateBar1 {
    animation: fadeBar1 1s;
    animation-fill-mode: forwards;
}

.animateBar2 {
    animation: fadeBar2 1s;
    animation-fill-mode: forwards;

}

.animateBar3 {
    animation: fadeBar3 1s;
    animation-fill-mode: forwards;

}

@keyframes fadeBar1 {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(45deg) translate(4px, 10px);
    }
}

@keyframes fadeBar2 {
    from {
        transform: scaleX(1);
        opacity: 1;
    }

    to {
        transform: scaleX(0);
        opacity: 0;
    }
}

@keyframes fadeBar3 {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-45deg) translate(4px, -10px);
    }
}