* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: Calibri;
}


.navbar {
    width: 100%;
    height: 5em !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #602929;
    color: #fff;
    font-size: 0.7rem;
}

.vistas {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.usuario {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-logo {
    width: 3em;
    font-size: 1.5em;
    font-weight: bold;
    color: #EBDBDB;
}

.nav-list {
    list-style-type: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    gap: 15px;

}

ul li a {
    font-size: 1.5em;
    text-decoration: none;
    color: #EBDBDB;
    padding: 1rem 1rem;
    
}

ul li a:hover {
    background-color: #9c7575;
    color: #602929;
    border-radius: 3px;
}

.contenido-seleccionado {
    background-color: #C9AFAF;
    font-weight: bold;
    color: #602929 !important;
    border-radius: 3px;
    margin-bottom: 10px;
}