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;
}
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;
}

header{
	background-color:rgb(59, 59, 157);
	border-bottom:solid white 4px;
	height:100px;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
}

body{
	background-color:rgb(56, 56, 56);
	color:white;
	text-align:center;
}

body,input,select{
	font-family: "Quicksand", sans-serif;
}

#displayStuff2{
	text-align:center;
	margin:auto;
	border:solid white 4px;
	width:40%;
	padding:15px;
	margin-bottom:20px;
	border-radius:20px;
	background-color:rgb(91, 90, 90);
}

h1{
	color:white;
	font-size:45px;
	text-align:center;
}

h2{
	text-align:center;
	font-size:35px;
	font-weight:600;
}

label,p{
	font-size:35px;
}

input,select{
	margin-bottom:30px;
	margin-top:10px;
	padding:7px 20px;
	font-size:20px;
	border-radius:10px;
	border:solid gray 3px;
	transition:.2s;
}

select{
	cursor:pointer;
}

input:hover,select:hover{
	background-color:rgb(224, 224, 224);
}

#submit{
	padding:8px 30px !important;
	background-color:rgb(44, 44, 44);
	border:solid white 3px;
	color:white;
	font-weight:600;
	font-size:25px;
	transition:.3s;
	cursor:pointer;
}

#submit:hover{
	background-color:whitesmoke;
	color:black;
	border:solid gray 3px;
}

#displayStuff2 p{
	margin-bottom:15px;
}