.navitem:hover
{
    background-color: purple;
}
.navbutton{
    color:white;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}
@media only screen and (orientation: landscape)
{
    .navbarcontainer
    {
        width: 100%;
        background-color: black;
        height: 2vw
    }
    .navbar{
        list-style-type: none;
        margin: 0;
        margin-left: 3vw;
        padding: 0px;
        height: 100%;
        gap: 0.5vw;
        display: flex;
        align-content: center;
        align-items: center;
    }
    .navitem{
        width: 5%;
        padding: 0px;
        color: white;
        text-align: center;
        height: 2vw;
        line-height: 2vw;
    }
}
@media only screen and (orientation: portrait)
{
    .navbarcontainer
    {
        width: 100%;
        background-color: black;
        height: 2vh
    }
    .navbar{
        list-style-type: none;
        margin: 0;
        margin-left: 3vh;
        padding: 0px;
        height: 100%;
        gap: 0.5vw;
        display: flex;
        align-content: center;
        align-items: center;
    }
    .navitem{
        width: 10%;
        padding: 0px;
        color: white;
        text-align: center;
        height: 2vh;
        line-height: 2vh;
        font-size: 1vh;
    }
}