.fruit{
    background : red;
    height : 20px;
    width: 20px;
    position : absolute;
    border-radius : 5px;
    border : solid 1px green;
}
body{
    margin: 0;
    padding: 0;
    background: black;
    height: 100vh;
}

.game-over, .game-won{
    color: red;
    font-size : 5rem;
    position: absolute;
}
.snake{
    background: green;
    width: 15px;
    height: 15px; 
    border-radius: 10px;
    border: 1px solid black;  
    position: absolute;
}
.canvas{
    height:510px;
    width: 510px;
    border: red solid 2px;
}
.button{
    color:white;
    background: green;
    max-width: 150px;
    padding:10px;
    margin-top: 50px;
    margin-left: 50px;
}
.instructions {
    color: white;
    font-size: 1.2rem;
    margin-left: 25px;
}
.game-won{
    color: greenyellow;
}