body{
    background-color: #333;
    overflow-y: hidden;
}

#gameContainer{
    text-align: center;
}
#gameBoard{
    border: 3px solid;
    background-color: forestgreen;
}
#scoreText{
    font-family: "consolas", monospace;
    font-size: 100px;
    color:#fff;
}
#resetBtn{
    font-family: "Permanent Marker", cursive;
    font-size: 22px;
    width: 150px;
    height: 50px;
    border: 4px solid;
    border-radius: 15px;
    cursor: pointer;
}

@media(max-width:400px){
    #gameboard{
        width:300px;
        height:300px;
    }

}