/*----------------CSS RESeT---------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ------------------END RESET----------------------*/

#page-title {
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 2em;
    text-align: left;
    padding-top: .5em;
    padding-bottom: .5em;
    margin-top: 0px;
    margin-bottom: 100px;
    padding-left: 5%;
    background-color: black;
}
#instructions {
    margin-bottom: 100px;
}

ol {
    width: 80%;
    margin: 0 auto;
    font-size: 1.7em;
    font-family: monospace;
    color: lime;
}
li {
    list-style-type: decimal;
    margin: 0 auto;
    text-align: left;
}

li:nth-child(1) {
    color: yellow;
}

li:nth-child(2) {
    color: orange;
}

li:nth-child(3) {
    color: blue;
}
.container {
    width: 80%;
    margin: 0 auto;

    background-color: black;
    padding: 1.5em;
    text-align: center;
    font-family: sans-serif;
    color: white;
}

.text {
    font-size: 1.5em;
}

.emphasis {
    color: limegreen;
    font-style: italic;
}

.numbers {
    width: 80%;
    height: 2.5em;
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 1.2em;
    padding-right: 1.2em;
    line-height: 2.5em;
    border: 4px solid white;
}

#selected {
    background-color: dimgrey;
    margin: 0 auto;
}

.button {
    height: 2.5em;
    margin-right: 5%;
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 1.2em;
    padding-right: 1.2em;
    line-height: 2.5em;
    border: thick solid white;
    background-color: gray;
    border-radius: 10px;
}

.button:first-of-type {
    margin-left: 7%;
}

#button-box {
    display: grid;
    margin-bottom: 100px;
    text-align: center;
    grid-template-columns: auto auto auto auto;
    grid-auto-columns: 100px;
}

.blue {
    background-color: skyblue;
}

.purple {
    background-color: mediumpurple;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}

.orange {
    background-color: orange
}
