
.snake-container {
    text-align: center;
    margin-top: 30px;
}

.instruction {
    position: absolute;
    left: 3%;
    top: 45%;
    transform: translateY(-50%);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

canvas {
    border: 2px solid white;
}

.snake-container h1{
    font-size:40px;
}

.snake-container button{
    width:180px;
    padding:7px;
    background-color: rgb(34, 238, 34);
    cursor:pointer;
    border-radius: 15px;
}

.snake-container p{
    font-size:20px;
}

.closeimg{
    width:40px;
    position:absolute;
    top:10%;
    left:90%;
    filter: invert(100%);
}

@media screen and (max-width: 500px){
    .snake-container{
        margin-bottom:10px;
    }
    canvas{
        margin-top: 320px;
        width:365px;
    }
    .closeimg{
        width:30px;
        top:3%;
        left:88%
    }
    .instruction{
        width:350px;
        top:45%;
        left:9%;
        text-align: center;
    }
}