.logo-image {
    width: 12rem;
    margin-bottom: 10px;
}

.settings {
    margin: 0 0 1.5rem 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav_item {
    display: flex;
    align-items: center;
    padding: 0.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav_item:hover,
.nav_item:focus {
    background-color: #E1E1E1;
}

.nav_item.active {
    background-color: #E1E1E1;
    color: #ffffff;
}

.nav_item {
    cursor: pointer;
}


.nav_item>img {
    margin: 0.5rem;
    cursor: pointer;
}

.nav_item>span {
    margin: 0.5rem;
    color: #050505;
    cursor: pointer;
}


a {
    text-decoration: none;
    color: inherit;
}