body{
    margin: 0;
    padding: 0;
}


#nav{
    width: 100%;
    height: 4rem;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    padding:0 10rem ;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    background-color: rgb(17, 23, 53);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 5;
}


#logo{
    width: 8.5rem;
    /* border: 1px solid red; */
    height: 100%;
}


#logo>img{
    width: 100%;
    height: 100%;
}

#links{
    width: 50%;
    /* border: 1px solid blue; */
}


#links ul{
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 0 2rem;
 text-decoration: none;
 list-style: none;
 color: aliceblue;
 text-decoration: none;
}

a{
    text-decoration: none;
    color: aliceblue;
}