body {
    background-color: #322c2c;
    width: 100vw;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
}

h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: darkslateblue;
    margin: 0;
    padding: 1% 0;
    color: aliceblue;
}

#colourDisplay {
    font-size: 1.5em;
}

#pickedMessage {
    font-family: 'Nunito', sans-serif;
    border: none;
    height: 100%;
    padding: 0 1%;
    margin: 0;
    background-color: white;
    text-transform: uppercase;
    color: darkslategray;
    font-size: 1.2em;
}

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

.colourSquare {
    width: 30%;
    padding-bottom: 30%;
    float: left;
    margin: 1.66%;
    border-radius: 1.2em;
    transition: all 1s linear;
}


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

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

button {
    font-family: 'Nunito', sans-serif;
    border: none;
    height: 100%;
    padding: 0 1%;
    margin: 0;
    background-color: white;
    text-transform: uppercase;
    color: darkslategray;
    font-size: 1.2em;
    outline: none;
}

#resetButton:hover {
    background-color: darkslateblue;
    color: white;
}

#hardBtn {
    color: white;
}