#topNavigation {
    position: absolute;

    top: 0;
    right: 0;
    width: 15vw;
    height: 5vh;
    background-color: #1c319c;
    color: white;
    border: 0.4vh solid #020f00;
    min-width: 450px;
    border-radius: 1vh 0 0 1vh;
}
#topNavButtons {
    display: flex;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    font-size: 3.5vh;
}
#topNavButtons button{
    height: 90%;
    width: 15vh;
    font-size: 2.5vh;
    padding-left: 2vh;
    padding-right: 2vh;
    border: none;
    background-color: rgba(0, 255, 255, 0);
    color: white;
}
#topNavButtons button:hover {
    text-decoration: underline;
}