
.container_page{
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 6em;
}

.container_page h1{
    text-align: center;
    font-size: 50px;
    margin-bottom: 1em;
}

.container_item h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.container_liste .title{
    font-size: 20px;
    padding: 5px;
    border-bottom: 3px dotted white;
    margin-bottom: 8px;
}

.container_liste .liste{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.container_liste .liste::-webkit-scrollbar{
    height: 15px;
}

.container_liste .liste::-webkit-scrollbar-track{
    background-color: transparent;
}

.container_liste .liste::-webkit-scrollbar-thumb {
    background: white; 
    border-radius: 8px;
}

.container_liste .container_plat{
    margin-left:10px;
    margin-right:10px;  
    margin-top: 3vh;
    width:25vh;
    height: 100%;
    background-color: rgb(0, 0, 0);
    border : 2px solid #fff;
    border-radius: 7px;
    text-align: center;
    transition: 0.25s;
    font-weight: bold;
}

.container_liste .container_plat:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.container_liste .container_plat img{
    margin: 0 auto;
    width: 25vh;
    height: 25vh;
    border-bottom: 2px solid #fff;
    border-radius: 7px;
}

.container_liste .container_plat p{
    font-size:1.2em;
}

#preferences{
    margin-bottom: 30px;
}