body{
background: teal;
font-family: 'Open Sans', sans-serif;
}
h1 {
font-size: 35px;
text-decoration: underline
}
.startingSection {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
color: #efefef;
}
#start, .startTest, .quizButton, .hideAlertBtn{
border: none;
color: white;
background-color: #225656;
width: 100px;
height: 40px;
font-size: 18px;
border-radius: 5%;
margin: 0 auto;
margin-top: 20px;
margin-bottom: 20px;
}
#start {
  width: 350px;
  height: 100px;
  font-size: 35px;
}
#start:hover {
  background-color: #003333;
}
.title, .resultsBoard {
	color: #efefef;
	font-size: 25px;
	text-align: center;
}

#testBoard {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: : center;
}
.quizDiv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.alertBox {
	width: 100vw;
	height: 100vh;
	color: #efefef;
	font-size: 30px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
label {
	color: #efefef;
  background: #005656;
  margin: 5px;
	font-size: 25px;
	width: 75%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	
}
.checked {
	border: 5px solid #00ffff;
}

input {
	opacity: 0.01;
}