body, button {
    font-family: monospace;
    font-size: 1rem;
    margin: 24px;
    max-width: 900px;
}


/* dropdown code taken & modified from https://www.w3schools.com/howto/howto_js_dropdown.asp */

/* Dropdown Button */
button {
    height: 24px;
    width: 24px;
    font-size: 1rem;
    cursor: pointer;
    margin: 8px;
    border: 1px solid gray;
}

#reorder {
    width: 36px;
}

.swatch {
    height: 20px;
    width: 20px;
    margin: 8px;
    font-size: 0.9rem;
    text-align: center;
    color: gray;
    display: inline-block;
}

#swatches {
    margin: 24px;
    width: 90%;
    max-width: 800px;
}

.labeled-button {
    text-align: center;
    width: 48px;
}

h1, h2 {
    color: #888;
}

h3 {
    margin: -4px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


/* initiate button colors */
#button2 {
    background-color: #f00;
}
#button3 {
    background-color: #0f0;
}
#button5 {
    background-color: #00f;
}