body {
    background-color: #232323;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.square {
    width: 30%;
    background: purple;
    float: left;
    padding-bottom: 30%;
    margin: 1.66%;
    border-radius: 15%;
    transition: background 0.5s;
}

#container {
    margin: 20px auto;
    max-width: 600px;
}

h1 {
    color: #fff;
    text-align: center;
    line-height: 1.1;
    padding: 20px 0;
    background: steelblue;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
}

#colorDisplay {
    font-size: 200%;
}

#message {
    display: inline-block;
    width: 20%;
}

#stripe {
    background: #fff;
    height: 30px;
    text-align: center;
    color: black;
}

.selected {
    color: #fff;
    background: steelblue;
}

button {
    font-size: inherit;
    border: none;
    background: none;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    height: 100%;
    letter-spacing: 2px;
    color: steelblue;
    transition: all 0.5s;
    outline: none;
}

button:hover {
    color: #fff;
    background: steelblue;
}