body{
    background-color: #232323;
    font-family: "Montserrat", "Avenier";
    
}
h1{
    color : white;
    text-align: center;
    font-weight: normal;
    background-color: steelblue;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 20px 0;
}
#colorDisplay{
    font-size: 200%;
}
.square{
    width: 30%;
    background: purple;
    padding-bottom: 30%;
    margin: 1.66%;
    float:left;
    border-radius: 15%;
    transition: background 0.6s;
    -webkit-transition:  background 0.6s;
    -moz-transition:  background 0.6s;
}
#message{
    display: inline-block;
    width: 20%;
}
#container{
    margin: 20px auto;
    max-width: 600px;
}

#stripe{
    background-color: white;
    text-align: center;
    height: 30px;
    color: black;
}
.selected{
    background-color: steelblue;
    color: white; 
}
button{
    background: none;
    border: none;
    height: 100%;
    /* font-family: inherit; */
    font-weight: 700;
    color: steelblue;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: inherit;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    outline: none;
}
button:hover{
    color: white;
    background-color: steelblue;
}