html,
body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	background-color: #eee;
	margin: 0 auto;
	padding: 0px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
	color: rgb(0, 100, 200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	list-style-position: outside;
}

/*a:visited {
	color: rgb(0, 80, 160);
}*/

label {
	display: block;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

nav {
	margin-bottom: 20px;
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 20px;
}

h1 {
	font-weight: normal;
}

h3 {
	font-weight: normal;

}

.active {
	color: red;
}

card {
	margin-bottom: 1em;
	background-color: white;
	border-radius: 15px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

main {
	text-align: center;
	margin: 0px auto;
	min-height: 100%;
	max-width: 95%;
	display: grid;
	align-items: center;
	justify-content: center;
	z-index: 1;
	padding-bottom: 40px;
}

.inline {
	display: inline-block;
}

.red {
	color: red;
}

.blue {
	color: blue;
}

.questiondiv {
	margin-bottom: 1em;
	background-color: white;
	border-radius: 15px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
	width: 95vw;
	max-width: 1000px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.pl5 {
	padding-left: 5px;
}

.pr5 {
	padding-right: 5px;
}

/*.questiondiv h3 {
	color: #000000;


	margin: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;

	padding-bottom: 30px;
}*/