body {
    background-color: #232323;
    margin: 0;
    font-family: "Montserrat", "Avenir";
}

h1 {
    color: white;
    font-weight: normal;
    text-align: center;
    line-height: 1.1;
    background-color: steelblue;
    margin: 0;
    padding: 15px;
    text-transform: uppercase;
}

.square {
    width: 30%;
    background-color: red;
    padding-bottom: 30%;
    float: left;
    margin: 1.66%;
    border-radius: 30px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.selected {
    background-color: steelblue;
}

#message {
    
    width: 20%;
}

#container {
    margin: 20px auto;
    max-width: 600px;
    
    
}

#stripe {
    background-color: white;
    height: 30px;
    text-align: center;
    color: black;
}

#colorDisplay {
    font-size: 150%;
}

button {
    border: none;
    font-family: "Montserrat", "Avenir";
    text-transform: uppercase;
    background: none;
    height: 100%;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: inherit;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

button:hover {
    color: white;
    background: steelblue;
}