.BaseGame {
    background-color: green;
    border-radius: 25px;
    height: 500px;
    width: 200px;
    margin: 20px;    
    padding: 20px;
    padding-top: 10px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.5);
}

.GameBoard {
    border: black thin solid;
    border-radius: 5px;
    /* height: 200px; */
}

.GameRow {
    clear: left;
    width: 180px;
    height: 32px;
    border: black thin solid;
    margin: 5px;
    border-radius: 2px;
    background-color: rgb(113, 155, 113);
    padding-left: 8px;
}

.GamePeg {
    height: 20px;
    width: 20px;
    /* background-color: blue; */
    border-radius: 10px;
    border: black thin solid;
    background-color: darkgray;
    float: left;
    margin: 5px;
}

.ResponsePeg {
    height: 10px;
    width: 10px;
    /* background-color: yellow; */
    background-color: darkgray;
    border-radius: 5px;
    border: black thin solid;
    float: left;
    margin: 2px;
}

.ResponseHolder {
    float: left;
    height: 36px;
    width: 36px;
}

.ColorSelector {
    position: absolute;
    height: 63px;
    width: 98px;
    background-color: coral;
    border: black thin solid;
    border-radius: 5px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.5);
}

.Red {
    background-color: red;
}

.White {
    background-color: white;
}

.Violet {
    background-color: violet;
}

.Blue {
    background-color: blue;
}

.Cyan {
    background-color: cyan;
}

.Yellow {
    background-color: yellow;
}

.Title {
    font-variant: small-caps;
    text-align: center;
    width: 200px;
    height: 35px;
    font-family: sans-serif;
    font-size: xx-large;
    font-weight: 200;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    /* padding: 5px 3px; */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    /* width: 30px; */
    height: 26px;
    margin-left:10px;
    margin-top:3px;
    border-radius: 3px;
  }