/* Style.css */

* {
	font-family: Georgia, Times, "Times New Roman", serif;
}

.quiz,.scores {
	margin: 50px auto 0 auto;
	max-width: 400px;
}

#top {
	color: rgb(241, 59, 13);

}

.containerNew {
	border: 5px solid;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 580px;
	width: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
}

p {
	margin: 15px 15px;
}

.landing {
	text-align: center;
}

.scoresHeader {
	position: absolute;
	top: 15px;
	left: 15px;
}

.timer {
	position: absolute;
	top: 15px;
	right: 15px;
}

button {
	display: inline-block;
	margin: 10px;
	cursor: pointer;
	color: #0a0909;
	background-color: #0ef4ec;
	border-radius: 5px;
	border: 0;
	padding: 20px;
}

button:hover {
	background-color: #27f1e3;
}

.options button {
	display: block;
}

input[type="text"] {
	font-size: 100%;
}

.hide {
	display: none;
}

.feedback {
	font-style: bold;
	font-size: 120%;
	margin-top: 20px;
	padding-top: 15px;
	color: #0e0d0d;
	border-top: 2px solid #17c4f4;
}

ol {
	padding-left: 15px;
	max-height: 600px;
	overflow: auto;
}

li {
	padding: 5px;
	list-style: decimal inside none;
}

li:nth-child(odd) {
	background-color: #090909;
}

@media screen and (max-width: 768px) {
	.containerNew {
		width: 80%;
	}
}

@media screen and (max-width: 575px) {
	.containerNew {
		width: 90%;
	}

	.quiz,
	.scores {
		max-width: 90%;
	}
}
