/* Estilo del NavBar */
.container-navbar{
    width: 100%;
    height: 80px;
}

.navbar{
    background-color: white;
    position: fixed;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #252525;
}

.izquierda{
    width: 20%;
    padding-left: 20px;
    display: flex;
    justify-content: start;
}

/* Contenedor del menu */
.derecha, .derecha-inicio{
    width: 80%;
    padding-right: 20px;
    display: flex;
    justify-content: end;
}

/* Pequeño ajuste solo para la pagina de inicio */
.derecha-inicio{
    padding-right: 35px;
}

/* Opciones del Menu */
a{
    background: #252525;
    border: solid #252525 2px;
    border-radius: 5px;
    padding: 10px 20px;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin: 15px 4px;
}

a:hover{
    background: #7e7e7e;
}

a img{
    height: 22px;
}
