@import url('https://fonts.googleapis.com/css2?family=Prosto+One&display=swap');

* {
    margin: 0;
    padding: 0;
}

.body{
    background:whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45rem;
}

button{
    background-color: #ffcd6e;
    border: 2px solid white;

}


button {
    position: absolute;
    top: 6rem;
    left: 27rem;
    padding: 0.5rem 1rem;
    font-size: 2rem;

    font-family: math;
    border-radius: 0.6rem;

}

/*Changed color*/
button:hover {
    cursor: pointer;
    filter: drop-shadow(2px, 2px, 2px black);
    background-color: #8b491c;
    color: white;
    transition: .8s ease;
    box-shadow: 5px 5px 5px #fffbaa;
}

#scoreBox{
    border-radius: 1rem;
    border: 2px solid #9E9E9E;
    position: absolute;
    font-size: 30px;
    right: 40px;
    top: 75px;
    font-family: math;
    padding: 3px 12px;
}

#HiScore{
    border-radius: 1rem;
    position: absolute;
    font-size: 30px;
    right: 25px;
    border: 2px solid #9E9E9E;
    top: 125px;
    font-family: math;
    padding: 3px 12px;
}
/*Changed color*/
#board{
    margin-top: 4%;
    border-radius: 1rem;
    background: #CD853F;
    width: 75vmin;
    height: 75vmin;
    border: 2px solid black;
    display: grid;
    border-radius: 50px;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}
/*Changed color*/
.head{
    background:#ffcd6e;
    transform: scale(1.5);
    border: 4px solid white;
    border-radius:45%;
}
/*Changed color*/
.snake{
    background:#fffbaa !important; 
    border-radius:45%;
      border: 1px solid white;
    
}
/*Changed color*/
.food{
    background: #8b491c;
    border: none;
    border-radius:8px;
}


h1 {
    margin: 0.5rem;
}

p {
    margin: 0.5rem;
}
.heading{
    color: aliceblue;
    margin: auto;
    display: inline;
    font-size: 2rem;
    margin-left: 41%; 
}

a{
    position: relative;
    font-size: 30px;
    
}