body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: "VT323", monospace;
}

body,
.snake{
    background-color: rgb(67, 66, 66)
}

#game-board{
    border-radius: 100px;
    display: grid;
    grid-template-columns: repeat(20,20px); 
    grid-template-rows: repeat(20, 20px);
    margin: 5px;
}

.game-border-1{
    border: #595f43 solid 10px ;
    border-radius: 30px;
    box-shadow: inset 0 0 0 10px #595f43;
}

.game-border-2{
    border: #abb78a solid 8px;
    border-radius: 26px;
    box-shadow: inset 0 0 0 10px #abb78a;
}

.game-border-3{
    border: #8b966c solid 30px ;
    border-radius: 20px;
    box-shadow: inset 0 0 0 5px #8b966c;
}

#instructions{
    position: absolute;
    top: 60%;
    width: 300px;
    text-align: center;
    padding: 30px;
    margin: 0;
    z-index: 2;

}

.scores{
    display: flex;
    justify-content:  space-between;
}

#score{
    color: #abb78a;
}

#score,
#highScore {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0;
}

#highScore{
    color: rgb(231, 255, 227);
}

.game-border-3,
#logo {
    background-color: #c4cfa3;
}

.snake{
    border-radius: #5a5a5a 1px dotted;
}

.food{
    background-color: #dedede;
    border: #999 5px solid;
}

#logo{
    position: absolute;
    width: 300px;
    z-index: 1;
}