@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Nova+Square&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&family=Open+Sans:wght@400;600;700&family=Orbitron:wght@400;500;600;700&family=Pacifico&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Roboto+Condensed:wght@300;400;700&family=Varela+Round&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pacifico', cursive;
}
.container{
    background: url("background.jpg");
    background-size: 100vw 100vh;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#board{
    height: 92vmin;
    width: 92vmin;
    background: linear-gradient(rgb(154, 240, 154),rgb(245, 245, 127));
    border: 2px solid black;
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: repeat(18, 1fr);
}

#scores{
    position: absolute;
    top: 9px;
    right: 40px;
}

.food{
    background: linear-gradient(red, purple);
    border: .25vmin solid black;
    border-radius: 8px;
    transform: scale(0.95);
}

.head{
    background: linear-gradient(red, yellow);
    border: .25vmin solid purple;
    border-radius: 6px;
    transform: scale(1.02);
}

.body{
    background-color: purple;
    border: .25vmin solid white;
    border-radius: 15px;
}
