#navbody {
    width: 100%;
    height: 60px;
    background-color: rgb(216, 213, 213);
    border-radius: 40px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.041);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

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

#navbody a svg {
    color: inherit;
}

.ul {
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
  
#item_3{
    margin-right: 20px;
}

.li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
  
.radio {
    display: none;
}
  
.svg {
    width: 40px;
    height: 40px;
    opacity: 80%;
    cursor: pointer;
    padding: 13px 20px;
    transition: 0.2s;
}
 
/* Transición de botones */
.ul .li a:hover svg {
    transition: 0.1s !important;
    color: rgb(15, 182, 93) !important;
    position: relative !important;
    margin-top: -4px !important;
    opacity: 100% !important;
}

.radio:checked + label .li a svg {
    color: rgb(15, 182, 93) !important;
    fill-rule: evenodd !important;
}

.ul .li a {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.ul .li a:active {
    opacity: 0.5;
    transform: scale(0.85);
    margin-top: 4px;
}

.center-item {
    display: flex;
    justify-content: center;    
}
.center-item img {
    height: auto;
    max-width: 180px;
}


