button {
    background: white;
    color:#12389f;
    border: none;
    font-size: 1.3em;
    text-transform: uppercase;
    margin: 5px;
    transition: all 0.3s;
    --webkit-transition: all 0.3s;
    -moz-transistion: all 0.3s;
}

button:hover {
    color: white;
    background: #12389f;
}

button:focus {
    outline: none;
}

.square {
    width: 30%;
    background-color: blue;
    margin: 1.66%;
    padding-bottom: 30%;
    float: left;
    border-radius: 15%;
    transition: background 0.5s;
    --webkit-transition: background 0.5s;
    -moz-transistion: background 0.5s;
}

#colorContainer {
    max-width: 600px;
    margin: auto;  /* top-bottom, left-right */
    padding-top: 20px
}

#status {
    text-transform: capitalize;
    font-size: 1.3em;
    color: black;
}

#menuBar {
    width: 60%;
    margin: 0px auto;
}

.selected {
    color: white;
    background: #12389f;
}