* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #e3f2fd;
}

.wrapper {
    width: 60vmin;
    height: 70vmin;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #293447;
    border-radius: 5px;
}

.game-details {
    color: #b8c6dc;
    font-size: 1.2rem;
    padding: 20px 27px;
    display: flex;
    justify-content: space-between;
}

.play-board {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: repeat(30, 1fr) / repeat(30, 1fr);
    background: #212837;
}

.play-board .food {
    background: #ff003d;
}

.play-board .snake-head {
    background: #60cbff;
}