

.logoburger {
    width: 10%;
}

.navigation {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navigationsub {
    display: flex;
    align-items: center;
}

.navtxt {
    list-style: none;
}


.liennav {
    text-decoration: none;
    color: black;
   
}

.liennav2 {
    text-decoration: none;
    color: black;

    margin: 10px;
    text-decoration: none;
}

.liennav:hover {
    background-color: rgb(0, 166, 255);
    color: white;
    padding: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: white;
    border: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #4ca7f1;
    color: rgb(255, 255, 255);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover {
    background-color: #1e67ed;
}