body {
    /* background-color:pink; */
    background-image: url(Gold-seamless-wallpaper-pattern-vector.jpg);
    background-repeat: repeat;
}


canvas {
    outline: 50px ridge brown;
    border: 1px solid black;
    background-color: rgb(241, 248, 248);
    background-color: rgb(245, 212, 218);
    width: 800px;
    height: 500px;
    margin: 50px;
}

h1 {
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(95, 5, 5);
    text-shadow: 5px 5px 4px white,
        -3px -3px 4px white,
        1px 1px 1px black,
        -1px -1px 1px black,
        1px -1px 1px black,
        -1px 1px 1px black,
        2px 2px 1px white,
        -2px -2px 1px white,
        2px -2px 1px white,
        -2px 2px 1px white;

}

/* "aqua", "beige", "blue", "brown", "chartreuse", "chocolate", "coral", "crimson", "cyan", "dodgerblue","firebrick", "fuchsia",
"gold", "goldenrod", "green", "grey", "greenyellow", "hotpink", "indianred", "indigo", "lawngreen", "lime", "magenta", "maroon",
"midnightblue",  "navy", "olive", "orange", "orangered", "orchid", "peru", "pink", "plum", "purple", "rebeccapurple", "red",
"rosybrown", "royalblue", "saddlebrown", "salmon", "sandybrown", "seagreen", "sienna", "silver", "skyblue", "slateblue", "slategrey",
"springgreen", "steelblue", "tan", "teal", "thistle", "tomato", "turquoise", "violet", "yellow", "yellowgreen" */




div#gameDiv {
    display: flex;
    flex-direction: column;
    width: max-content;
    /* justify-content: flex-end; */
}

div#buttonDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 5px;
    /* background-color: rgb(196, 162, 169); */
}

button {
    height: 30px;
    width: 100px;
    margin-left: 5px;
    margin-right: 5px;
    /* border: 3px outset; */
    font-weight: bolder;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    text-shadow:
        0.5px 0.5px 1px gray,
        -0.5px -0.5px 1px gray,
        0.5px -0.5px 1px gray,
        -0.5px 0.5px 1px gray;
}

button:disabled {
    color: white;
    background-color: gray;
    border: 3px inset;

    text-shadow:
        1px 1px 2px black,
        -1px -1px 2px black,
        1px -1px 2px black,
        -1px 1px 2px black;
}

/* button#start,
button#stop {

} */


/* button#textON,
button#textOFF {

} */