.img-user {
    border-color: aliceblue;
    border-radius: 100%;
}

.navbar img {
    height: 5rem;
    width: auto;
}

.img-user {
    height: 4rem !important;
    width: 4rem !important;
}

.navbar {
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

.nav-links a {
    color: aliceblue;
    text-decoration: none;
}

.nav-links a:hover {
    transform: scale(1.1);
    transition: ease-in-out;
    text-decoration: underline;
}

.current{
    color: red !important;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-grow: 0.9;
}

.upperNav {
    background-color: blue;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 900px) {
    .navbar{
        width: 100%;
        height: fit-content; 
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        border-radius: 0;
        padding: 0.3rem;
    }
    .navbar img{
        height: 2.4rem !important;
        width: auto !important;
    }

    .navbar a{
        margin: 6px;
    }
    .nav-links{
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;

    }
    .img-user{
        display: none;
    }
}