body{
    background:black;
}
*{
    margin:0;
    padding: 0;
}



    .background1{
        display: block;
        height: 400px;
        width: 400px;
        position: fixed;
        top: calc(50vh - 200px);
        left:calc(50vw - 200px);
        background-color: azure;
    }

    .grid{
        display: grid;
        grid-template-columns: repeat(20,20px);
        grid-template-rows: repeat(20,20px);
    }

    .grid-item1{
        height: 20px;
        width: 20px;
        background: green;
        z-index: 9;
    }

    .grid-item2{
        height: 20px;
        width: 20px;
        background: greenyellow;
        z-index: 9;
    }

body{

    .snekhoofd{
        display: block;
        height: 20px;
        width: 20px;
        position: absolute;
        top:40px;
        left:20px;
        background:red;
        z-index: 10;
    }
    .snekbody{
        display: block;
        height: 20px;
        width: 20px;
        position: absolute;
        top:40px;
        left:20px;
        background: rgb(208, 0, 0);
        z-index: 10;
    }
    
}



    .sneketen1{
        height: 20px;
        width: 20px;
        position:absolute;
        top: 40px;
        left: 20px;
        border-radius: 50px;
        background: blue;
        z-index: 10;
    }


    .score{
    color:white;
    position: absolute;
    top:calc(50vh - 250px);
    left: calc(50vw - 180px);
    z-index: 10;
    }

    .highscore{
        color: white;
    }
    
