
nav {
    width: 100vw; 
    background-color: #03002E;
    border-bottom: 10px solid #010048;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    top: 0;
    overflow: hidden;
}

.body {
    padding-top: 100px;
}

nav p {
    color: yellow;
    padding: 0;
    margin-left: 10%;
}

nav ul {
    list-style-type: none;
    height: 100%;
    display: flex;
    float: right;
    align-items: center;
    margin-right: 10%;
    padding: 2%;
}

nav ul li {
    padding: 0;
    margin: 0;
    max-height: 100px;
}

nav ul li a {
    padding: 100% 2vw;
    margin: 0;
    text-decoration: none;
    color: yellow;
    transition: all .3s ease-out;
}

nav ul li a:hover{
    color: greenyellow;
    background-color: #010048;
    transition: all .3s ease-in-out;
}

#active-page {
    background-color: #010057;
    color: greenyellow;
}




/*
nav {
    background-color: #03002E;
    border-bottom: 3px solid #010048;
    position: fixed;
    display: flex;
    width: 100vw;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    top: 0;
    overflow: hidden;
}

nav p {
    color: yellow;
    padding: 0;
    margin-left: 10%;
}

nav ul {
    list-style-type: none;
    display: flex;
    overflow: hidden;
    margin-right: 10%;
    padding: 2%;
}

nav ul li {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

nav ul li a {
    padding: 3vw;
    text-decoration: none;
    color: yellow;
    transition: all .3s ease-out;
}

nav ul li a:hover{
    color: greenyellow;
    background-color: #010057;
    transition: all .3s ease-in-out;
}


.menu_hamburger {
    display: none;
    position: fixed;
    
}

#active-page {
    background-color: #010057;
    color: greenyellow;
}
    */