* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

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

.wrapper {
    width: 70vmin;
    height: 80vmin;
    display: flex;
    flex-direction: column;
    background: #293447;
    border-radius: 6px;
}

.game-details {
    color: #b8c6dc;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 27px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

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

.play-board .food {
    background: red;
}

.play-board .poison {
    background: rgb(88, 15, 11);
}

.play-board .head {
    background: rgb(83, 184, 227);
}
