.navbar{
    justify-content: flex-end;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    box-shadow: 0px 2px 5px black;
}

.nav-item{
    font-size: 1.3rem;
    text-decoration: none;
    color: white;
    transition: color 0.25s;
    margin-left: 32px;
    font-weight: 500;
}

.nav-item-last{
    margin-right: 100px;
}

.nav-item:hover{
    color: rgb(91, 212, 91);
}


@media (max-width:620px) {
    .navbar{
        justify-content: space-evenly;
    }
    .nav-item{
        margin: 0;
    }
}

@media (min-width:621px) and (max-width:1200px) {
    .navbar{
        justify-content: center;
    }
    
    .nav-item-last{
        margin-right: 0;
    }
}

.active{
    color: rgb(17, 145, 17);
}
