html,body {

}
* {
	
}
body {
	font-family: 'Raleway', sans-serif;
	background-color: rgba(189, 247, 254, 1);
	display: flex;
	flex-direction: column;
	align-content: center;
}
h1,h2,h3 {
	font-family: 'Abril Fatface', cursive;
	display: flex;
	justify-content: center;
	align-items: center;
}
p {
	font-family: 'Raleway', sans-serif;
	display: flex;
	justify-content: center;
}
#start {
	font-family: 'Abril Fatface', cursive;
	font-size: 16px;
	align-self: center;
	background-color: rgb(63, 191, 63);
	color: black;
	border-color: white;
	border-width: 2px;
	border-radius: 10px;
}
#next-round, #play-again {
	font-family: 'Abril Fatface', cursive;
	font-size: 16px;
	align-self: center;
	background-color: white;
	color: black;
	border-color: black;
	border-radius: 10px;
	border-width: 2px;
}
#gameboard {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
}
#wrapper {
	float:left;
}
#poss-answers {
	background-color: rgba(189, 247, 254, 1);
	font-family: 'Abril Fatface', cursive;
	font-size: 16;
	text-align: center;
}
#mult-choice input[type="radio"] {
	opacity: 0;
  	position: fixed;
  	width: 0;
}
#mult-choice label {
    padding: 10px 20px;
    font-size: 12px;
    border: 2px solid darkgray;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    text-align: center;
}
#mult-choice label:hover {
	background-color: white;
}
#dog-dealt {
	padding: 20px;
	margin: 10px;
}
table {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: rgba(189, 247, 254, 1);
	font-size: 16px;
	font-family: 'Abril Fatface', cursive;
}

