/* Jeffrey Phelps 2018 RGB Color Guesser guessing game */


@import url('https://fonts.googleapis.com/css?family=Mada');

body {
    background-color: #232323;
    text-align: center;
    font-family: "Mada";
}

.square {
    width: 30%;
    background: purple;
    padding-bottom: 30%;
    float: left;
    margin: 1.66%;
    border-radius: 15px;
    transition: background 0.75s;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
}

.container {
    margin: 0 auto;
    max-width: 600px;
}

h1 {
    text-align: center;
    color: wheat;
    background-color: steelblue;
    margin: 0;
    padding: 5px;
    text-transform: uppercase;
}

#colorDisplay {
    font-size: 200%;
}

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

.selected {
    background-color: steelblue;
    color: white;
}

#message {
    font-size: 1.5em;
    font-weight: bold;
    display: inline-block;
    width: 20%;
}

button {
    border: none;
    background: none;
    outline: none;
    text-transform: uppercase;
    height: 100%;
    font-weight: bold;
    color: steelblue;
    letter-spacing: 1px;
    font-size: 1.3em;
}

button:hover {
    color: white;
    background-color: steelblue;
    transition: all 0.25s;
    -webkit-transition: background 0.25s;
    -moz-transition: background 0.25s;
}