* {
    padding: 0;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

#snakeGround {
    display: flex;
    flex-direction: column;
    border: 1px solid red;
}

.row{
    width: 100%;
    height: 100%; 
    display: flex;
}

.pixel{
    background: black;
    width: 100%;
    height: 100%;
    display: table-cell;
}

.snake{
    background: white;
}

.food{
    background: red;
}

.score {
    font-size: 25px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 30px;
}

.info {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 30px;
}

.pause {
    position: absolute;
    font-size: 40px; 
    animation: pulse 1s infinite;
    display: none;
}

@keyframes pulse {
    0% {
      color: black;
    }
    100% {
      color: white;
    }
  }
  