@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Hurricane&family=Lexend+Deca&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Big Shoulders Display', cursive;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: #524a4a;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.board {
    height: 90vmin;
    width: 90vmin;
    min-height: 50vmin;
    min-width: 50vmin;
    background-color: black;
    border: 2px solid black;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(20, 1fr);
}

.highScoreBoard {
    height: 100vh;
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.snakeHead{
    background: linear-gradient(to top, #0ba360 0%, #3cba92 100%); 
    border: 0.2vmin solid lime;
}
.snakeBody{
    background: radial-gradient(circle at 49.8% 44.4%, rgb(251, 230, 59) 0%, rgb(161, 255, 63) 90%);
}
.food{
    /* background: linear-gradient(red, yellow); */
    background: radial-gradient(circle at 50.4% 50.5%, rgb(251, 32, 86) 0%, rgb(135, 2, 35) 90%); 
    border: 0.2vmin solid maroon;
    border-radius: 50%;
    /* box-shadow: 0 0  0.7vmin 0.6vmin #ff0000; */
}

.userScore {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.highScore{
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}