*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body{
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #E3F2FD;
    
}
.wrapper{
    width:65vmin;
    height:70vmin;
    background: #293447;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border-radius: 5px;
    box-shadow:0 0 10px 10px #344966 ;
}
.gamedetails{
    color: #b8c6b4;
    font-size: 1.2rem;
    font-weight: 500;
    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 .head{
    background:#60cbff;
}