html, body{
    margin-top: 0.15%;
    margin-bottom: 0.1%;
    background-image: url("img/background.png");
    background-position: center center;
    background-attachment: fixed;
}
canvas{
    z-index: 1;
    margin: 1.3% auto;
    display: block;
    border: 5px solid rgb(5, 71, 5);
}
.gameOver{
    z-index: 2;
    background-image: url("img/gameOverSnake.png");
    position: absolute;
    left: 38%;
    top: 35%;
    height: 260px;
    width: 200px;
    background-position: right top;
    background-repeat: no-repeat;
}
.gameOver2{  
    z-index: 1;
    background-image: url("img/gameOver.png");
    position: absolute;
    left: 50%;
    top: 45%;
    height: 250px;
    width: 183px;
    background-position: right top;
    background-repeat: no-repeat;
}
.tryAgain{
    z-index: 1;
    position: absolute;
    left: 54%;
    top: 65%;
    background: rgb(44, 97, 44);
    outline: none;
    border: none;
    border-radius: 2%;
    color: white;
    padding: 10px;
    text-transform: uppercase;
}
.hide{
    display: none;
}