body {

    font-family: "Lucida Console", sans-serif;
}

.game {
    align-items: center;
    flex-direction: column;
    display: flex;
    margin: 0 auto;
}

.row {
    display: flex;
}

.board {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    background: lightgrey;
}
.segment{
    width: 17px;
    height: 17px;
    display: inline-block;
}
.snake-segment {
    background-color: #807920;
    outline: 1px solid lightgrey ;
}

.food-segment {
    background-color: brown;
    border-radius: 50%;
}

.score {
    text-align: center;
    margin: 10px;
}

.game-over {
    right: 0;
    left: 0;
    position: absolute;
    top: 170px;
    padding: 10px 10px;
    text-align: center;
}

.btn-new-game {
    background: #7b7a7a;
    border: none;
    box-shadow: 0 0 3px #000;
    font-size: 20px;
    padding: 15px;
    width: 200px;
    outline: none;
    cursor: pointer;
}