body {
    background-image: url("stonewall.png");
}

.game-name {
    font-family: Bath Time Regular;
    text-align: center;
    font-size: 40px;
    color: yellow;;
}

.main-content{
    display: flex;
    /* border: 1px solid red; */
}

.instructions {
    width:300px;
    height: 495px;
    float: left;
    margin-right: 30px;
    background: rgb(172, 171, 171);
    border: 5px solid lightgray;
}

.instructions > h2 {
    text-align: center;
}

canvas {
    float: left;
    /* display: none; */
}

li {
    margin-bottom: 10px;
    color: black;
    font-size: 20px;
    font-weight: bold;
}

#startButton {
    width: 300px;
    height: 100px;
    font-size: 30px;
    font-weight: bold;
    color: red;
    margin-left: 200px;
    margin-top: 150px;
    border: 3px solid red;
    border-radius: 20px;
    cursor: pointer;

}