
#nav-menu {
    display: flex;
    position: fixed;
    font-size: larger;
    font-weight: bolder;
    top: 0%;
    left: 0%;
    height: 10%;
    width: 100% ;
    color: #000;
    background-color: #295;
    justify-content: space-evenly;
    align-items: center;
    z-index: 10;
    
}

#nav-menu a {
    text-decoration: none;
    color: #000;
}

#nav-menu a:hover {
    text-decoration: underline;
}


#nav-image {
    width: 50%;
    height: auto;
}



@media (max-width: 1000px) {
    #nav-menu {
    font-size: medium;
    font-weight:normal;
    }
}

