@import url('https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap');
*{
    padding: 0;
    margin: 0;
}
 /* .snakee{
    background-image: url(../img/download.jpg);
    background-repeat: no-repeat;
    position: absolute;
    height: 50vmin;
    width: 50vmin;
    bottom: 0;
    right: 0;
 } */
.body{
    background-image: ;
    background: black; 
    min-height: 100vh;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title{
    position: absolute;
    font-size: 1rem;
    color: red;
    letter-spacing: 5px;
    font-family: 'New Tegomin', serif;
    top:6px;
    text-align: center;
}
.score{
    border: 3px solid black;
    color: red;
}
#scoreBox{
    position: absolute;
    bottom: 20px;
    left: 50px;
    font-size: 39px;
    font-weight: bold;
    font-family: 'New Tegomin', serif;
}

#hiscoreBox{
    position: absolute;
    bottom: 60px;
    left: 50px;
    font-size: 39px;
    font-weight: bold;
    font-family: 'New Tegomin', serif;
}

#board{
    background: yellow;
    position: absolute;
    top:150px;
    width: 70vmin;
    height: 70vmin;
    border: 2px solid red;
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}

.head{
    background: green;
    border: 2px solid rgb(34, 4, 34); 
    transform: scale(1.02);
    border-radius: 9px;
}

.snake{
    background-color: green;
    border: .25vmin solid black;
    border-radius: 12px;
}

.food{
    background: red;
    
    border: .25vmin solid black;
    border-radius: 50%;
}

/* =================RESPONSIVE======================== */
@media only screen and (min-width:600px){
    
}