* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #00ff00;
    display: flex;
    justify-content: center;
    overflow: hidden;
     }

.canvaJeu {
    width: 1200px;
    height: 6000px;
    background-color: #daffb5;
    position: absolute;
    
    overflow: hidden;

    background-color: #6a6a6a;
    background-position: center;
    background-size: cover;
    /* margin-top: -5600px; */
    /* bottom: 400px; */
    transition: .2s;
}

.canvaJeu > img {
    height: 6000px;
    width: 1200px;
    position: absolute;

    transition: .4s;
}

#canvaContainer {
    height: 100%!important;
    width: 100%!important;

    background-color: rgb(49, 49, 49);
    overflow: hidden;
    outline: none!important;

    display: flex;
    justify-content: center;
}

#player {
    height: 75px;
    width: 75px;
    position: absolute;
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(./pigeon.png);
    background-color: #00a6ff;
    border-radius: 3px;
    transition: .05s;
}         

.obstacle {
    background-color: #323232;
    position: absolute;
    background-image: url(./textureBrique2.png);
    box-shadow: inset 0 0 0px 4px #262626;
}

.power-visualizer {
    position: fixed;
    margin-top: 20px;
    width: 700px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    z-index: 200;
    outline: solid 4px #ffffff;
    box-shadow: inset 0 0 10px 5px #000000a8;
}

#slider {
    height: 100%;
    width: 0%;
    background-color: #353535;
}

#outilPerso {
    position: fixed;
    margin-top: 200px;
    margin-left: 75%;
    width: 120px;
    height: 150px;
    background-color: rgb(255, 255, 255);
    z-index: 200;

    font-weight: 900;
}

.point {
    width: 8px;
    height: 8px;
    background-color: red;
    position: absolute;
    border-radius: 50%;
}

.paralaxContainer {
    height: 100%;
    width: 100%;
}

.paralaxContainer > img {
    position: absolute;
    height: 700px;
}