
nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--blanco);
    padding: 0.5rem 0;
    height: 100px;
    width: 100%;
    background: rgb(84,88,47);
    background: linear-gradient(84deg, rgba(84,88,47,1) 0%, rgba(190,179,126,1) 40%);
    opacity: 0.6;
}

nav img{
    height: 100%;
    margin-left: 32px;
}

nav i{
    position: relative;
    font-size: 1.6rem;
    margin-right: 32px;
    text-shadow: 0px 0px 4px black;
}

nav i:hover{
    cursor: pointer;
    color: #e5ff74;
}

nav i::after{
    content: "";
    top: -5px;
    right: -7px;
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: red;
}