#snakeContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.snake{
    background-color: #414141;
}

#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: solid 10px;
    border-radius: 30px;
    box-shadow: inset 0 0 0 10px;
}

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

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

#instructions{
    position: absolute;
    color: white;
    width: 300px;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
}

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

#score,
#highScore{
    font-size: 40px;
    font-weight: bolder;
    color: #416b41;
}

#highScore{
    display: none;
}

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

.food{
    background-color: #ad7474;
    border: #9e4d4d 5px solid;
}

#logo {
    position: absolute;
    width: 400px;
    height: 400px;
    margin-top: 18px;
    z-index: -1;
    border-radius: 0px;
}