.navbar{
    width: 100vw;
    height: calc(3.5rem + 20px);
    position: fixed;
    transition: background-color 200ms ease;
    top: 0;
    z-index: 3;
}
.navbar:hover{
    background-color: #2c2c2c;
}
.navbar-nav{
    justify-content: right;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: calc(3.5rem + 20px);
}
.nav-item{
    display: flex;
    align-items: center;
    height: calc(3.5rem + 20px);
    background-color: rgba(0,0,0,0);
    text-align: center;
}
.nav-item:hover{
    background-color: rgba(0,0,0,0.5);
}
.link-text{
    color: #fff;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    justify-content: center;
}
a{
    text-decoration: none;
}
.navbar_mobile{
    display: none;
}

@media only screen and (max-width: 600px){
    .navbar_mobile{
        width: 100vw;
        height: 3.5rem;
        position: fixed;
        background-color: #2c2c2c;
        bottom: 0;
        z-index: 3;
        display: block;
    }
    .navbar-nav{
        display: none;
    }
    .navbar{
        display: none;
    }
    .navbar-nava{
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100vw;
    }
    .link-kext{
        color: #fff;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-size: 0.8rem;
    }
    .nav-item{
        min-width: 25vw;
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(3.5rem / 0.95);
    }
}