body {
    font-family: "Readex Pro";
    height:0;
}

.menu li {
    list-style: none;
    transition: 0.5s ease;
}

.menu li a {
    text-decoration: none;
    color: white;
  
}
.menu li a:hover{
    color: #9E7E05;
}
.menu li:hover{
    transform: translateX(5px);
}

.bar {
    display: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    place-items: center;
    position: fixed;
    width: 100%;
    top: 0;
}
.navbar.scrolled {
    background: #323232;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu {
    display: flex;
    width: 60%;
    justify-content: space-evenly;
    flex-direction: row-reverse;
}

.footer img , .logo img {
    width: 100px;
    background: white;
    border-radius: 13px;
    margin:15px;
}

.goal:hover {
    color: black;
    background: white;
    transition: .5s;
}

.bar{
    font-size: 25px;
    padding-right: 20px;
    cursor: pointer;
    color:white;
}
@media (min-width: 768px) and (max-width: 850px){
    .menu li a {
        font-size: 14px;
    }
}
@media (max-width: 767px){
    .bar{
        display: block;
    }
    .menu.active {
        display: block;
    }
    
    .menu{
        display: none;
        flex-direction: column;
        text-align: center;
        background: #ffffff;
        padding: 20px 0;
        width: 100%;
        position: absolute;
        top: 100px;
        right: 0;
        text-align: -webkit-center;
        box-shadow: -2px 7px 9px 2px #0000004f;
    }
    .menu li{
        font-size: 15px;
        padding: 10px 0;
        border-bottom: 1px solid #bfbdbda5;
        width: 50%;
    }
}