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;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: rgb(165, 187, 255);
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

label, input, select {
    font-size: 24px;
    font-weight: bold
}

label {
    color: white;
    text-shadow:
    0 0 3px rgb(10, 0, 54),
    0 0 3px rgb(10, 0, 54),
    0 3px rgb(10, 0, 54);
}

input, select {
    color: rgb(16, 0, 88);
    outline: none;
    border-radius: 5px;
    border: none;
    box-shadow:
    0 3px rgb(83, 83, 187);
}

button {
    display: block;
    width: 200px;
    height: 30px;
    font-size: 24px;
    border-radius: 5px;
    border: none;
    margin: auto;
    box-shadow:
    0 3px rgb(83, 83, 187);
    color: white;
    background-color: rgb(159, 159, 255);
    text-shadow:
    0 0 3px rgb(10, 0, 54),
    0 0 3px rgb(10, 0, 54),
    0 3px rgb(10, 0, 54);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

button:hover {
    background-color: rgb(151, 151, 239);
    box-shadow:
    0 3px rgb(76, 76, 187);
}

/* IDS */

#information, #questions, #results, .recorded {
    background-color: rgb(110, 110, 255);
    margin: auto;
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow:
    0 10px rgb(83, 83, 187);
}

#information {
    width: 500px;
    gap: 15px;
}

#questions {
    width: 450px;
}

.recorded {
    width: 300px;
    text-align: center;
    gap: 5px;
}

#questions > h1, #questions > p {
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow:
    0 0 5px rgb(10, 0, 54),
    0 0 5px rgb(10, 0, 54),
    0 4px rgb(10, 0, 54);
}

#question-header {
    margin-bottom: 20px;
}

#questions > p {
    margin-bottom: 10px;
    font-size: 28px;
}

#question-img {
    display: block;
    width: 200px;
    margin: 30px auto 30px auto;
}

#results {
    width: 400px;
}

#results > h2, .recorded > h2, .recorded > p {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow:
    0 0 5px rgb(10, 0, 54),
    0 0 5px rgb(10, 0, 54),
    0 3px rgb(10, 0, 54);
    margin-bottom: 20px;
}

.recorded > h2 {
    font-size: 36px;
}

#you-know-what-you-did {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}

#question-input {
    display: block;
    margin: auto;
    margin-top: 15px;
}