body{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    
    background-color: rgb(234, 241, 254);
}
.game-container{

    width:800px;
    height:800px;
    background-image: url("images/motif-serpend.jpg"); 
    justify-content: center;
    border-radius: 50px;
    border-bottom: 5px solid rgb(202, 81, 6);
    
               
}




#game-board{
   
    background-image: url("images/herbre.jpg");
    
    display: block;
    margin: 0 auto;
    border-bottom: 5px solid rgb(202, 81, 6);
    border-radius: 25px;
    
}
    

.all-score{
    background-color: rgb(236, 240, 235);
    width:480px;
    height:100px;
    margin-top: 10px;
    margin-left:18%;
    padding: 10px;
    display: flex;
    align-items: center;      /* Active Flexbox */
    justify-content: center; /* Aligne les éléments à la fin (droite) */
    gap: 130px;
    border-radius: 20px;
    border-top:5px solid rgb(202, 81, 6) ; 
}

.reset{

    width:100px;
    height: 100px;
    border-radius: 10px;
    color:rgb(0, 0, 43);
    font-size: 20px;
    background-color: rgb(202, 81, 6);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
h3{
    color:rgb(7, 19, 7);
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}


