#canvas1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 2px solid black;
}

.wrapper {
    border: 2px black solid;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}



button {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #b6b5a0;
    color: rgb(5, 43, 255);
    padding: 20px 50px;
    border-radius: 5px;
    z-index: 200;
    cursor: pointer;
    border: none;
    outline: none;
}

.highScore {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    color: aliceblue;
}

#gameover {
    z-index: 1;
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

#sound {
    cursor: pointer;
    z-index: 1;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 73%;
    left: 40%;
}

#youwon {
    width: 100px;
    position: absolute;
    top: 200px;
    left: 150px;
    display: none;
}

#youlose {
    width: 400px;
    position: absolute;
    top: 100px;
    left: 0px;
    display: none;
}

#restart {
    position: absolute;
    top: 310px;
    left: 250px;
    cursor: pointer;
    font-size: 1.25em;
    color: #FFF;
}