nav{
    max-width: 100%;
    height: fit-content;

    padding-top: 5px;
    padding-bottom: 3px;
    padding-left: 20px;
    padding-right: 20px;

    margin: 0;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: space-between;

    background-color: rgba(255, 255, 255, 0.1);
}

.icon{
    padding: 0px;
    margin: 0px;

    display: flex;
    flex-direction: row;

    align-items: center;
    gap: 10px;
    color: white;
}

nav img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    aspect-ratio: 1;
    object-fit: cover;
}


nav ul{
    display: flex;
    flex-direction: row;

    gap: 10px;

    list-style: none;

    color: white;
}

nav ul li{
    font-weight: bold;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}


nav ul li:hover{
    border-right: transparent;
    border-left: transparent;
    border-top: transparent;
    border-bottom: solid;
    border-color: white;
    border-width: 1px;

    cursor: pointer;
}

.currentPath{
    border-right: transparent;
    border-left: transparent;
    border-top: transparent;
    border-bottom: solid;
    border-color: white;
    border-width: 1px;
}

@media screen and (max-width: 600px) {
    .icon h3{
        font-size: 12px;
    }

    .icon img{
        width: 40px;
        height: 40px;
    }

    nav ul li{
    font-weight: bold;
    font-size: 12px;
    }

    nav ul li:hover{
    border: none;
    cursor: pointer;
    }
}