* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

a    {
    text-decoration:none;
    color:#2AA198;
    text-align:right;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
     }

a:hover    {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
    color:#1F7872
     }

body {
    font-family: Arial;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
    margin: 0px;
    margin-top:5px;
    height: 100%;
    color:#2AA198;
}

#jeu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    height: 100%;
    width: 100%;
}

#canvas_game {
    position: relative;
    background-image: url('../images/bois3.png');
    border: 1px solid rgb(150, 150, 150);
    max-height: 95%;
    max-width: 95%;
    border-radius: 10px 10px 10px 10px;
}


#form_debut { 
    z-index: 1;
    display: none;
    position: absolute;
    
    padding: 20px;
    
    background:#073642;/*#009d36;*/
    text-align:center;
    color:white;
    font-family: Arial;
}

input[type=range] {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 150px;
}