@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Raleway:wght@200;300;400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body{
    background: url(./images/restaurant.jpg);
    background-size: cover;
}*/

.wraper{
    background: #555;
}
.navbarMM{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 65px;
    font-family: 'Raleway', sans-serif;
    box-shadow: 5px 6px 20px rgba(11, 48, 255, 0.952);
}

.logo h1{
    font-family: 'Permanent Marker', cursive;
    color: #f5f5f5;
    font-size: 2rem;
}

.liens{
    display: inline-flex;
    color: #fff;
}

.liens .lien{
    list-style: none;
}


.liens .lien a{
    color: #f5f5f5;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
}
.liens .lien a:hover{
    background: rgba(119, 174, 246, 0.924);
    border-radius: 1.5rem;
    transition: all 0.2s ease-in;
    box-shadow: 5px 6px 20px rgba(11, 48, 255, 0.952);
}


/* Style pour le menu deroulant */

.sous-menu .liens{
    position: absolute;
    display: none;
    background: #555;
    width: 250px;
    margin-left: 5px;
    top: 65px;
    text-align: center;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.lien-deroulant:hover .sous-menu .liens{
    display: block;
    top: 55px;
}

.sous-menu .liens .lien{
    margin: 20px 0;
}

/* Style pour les megamenu */

 
.mengamenu{
    position: absolute;
    background: #555;
    width: 80%;
    top: 65px;
    left: 10%;
    padding: 20px;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    display: none;
}

.lien-mega:hover .mengamenu{
    display: block;
    transition: all 0.3s ease-in;
    top: 55px;
}

.containerMM{
    display: flex;
    justify-content: space-evenly;
    align-items: left;
    text-align: left;
}

.colone ul{
    display: block;
}

.colone ul li{
    margin: 20px 0;
}

.colone .logo{
    height: 200px;
    width: 200px;
    margin: auto;
    border-radius: 1rem;
    border: solid 3px #f5f5f5;
}

.colone h2{
    font-size: 1.2rem;
}