* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
	-webkit-user-select: none; /* Safari */
	user-select: none; /* Standard syntax */
	user-drag: none; /* Standard syntax */
	-webkit-user-drag: none; /* Safari and Chrome */
}
body {
  background-color: ivory;
	font-family: sans-serif;
	font-size: 3vmin;
}
#head {
  width:95vmin;
  height:8vmin;
  display:flex;
  justify-content: space-around;
  align-items: center;
  margin:0 auto;
}
#head img {
  height:60%;
  cursor: pointer;
}
#main {
	width:95vmin;
	display:flex;
	flex-direction: column;
	align-items: center;
	margin:0 auto;
}
#question_choices, #answers {
	width:81%;
	display:flex; flex-direction:column;
	gap:1vmin;
}
#question_choices {
	height:26vmin;
}
#row1, #row2 {
	display:flex;
	justify-content: space-evenly;
}
#question {
	width:100%;
	text-align: center;
}
#question, .choice {
	padding:1vmin 2vmin;
	border:.5vmin groove gold;
	border-radius:2vmin;
	background-color: honeydew;
}
.choice {
	width:48%;
	display:flex;
	justify-content:center;
	align-items: center;
}
#answers {
	align-items: center;
}
#buttons {
	width:100%;
	margin:2vmin 0;
	display:flex;
	justify-content: space-between;
}
#info {
	margin-top:2vmin;
	font-size: 2.4vmin;
	text-align: center;
}
#answers div {
	border-width:1vmin;
} 
