body {
	background-color: cadetblue;
}
.mainView {
	margin-left: auto;
    margin-right: auto;
    background-color: blanchedalmond;
    border-radius: 40px;
	padding: 20px;
	text-align: center;
}

.home {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.buttons {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.button {
	border-radius: 10px;
	padding: 5px;
	margin: 5px;
	color: #fff;
	box-shadow: 0 4px #999;	
	font-size: 16px;
	font-weight: 400;
}
.plainButton {
	border-radius: 10px;
	padding: 5px;
	margin: 5px;
	color: #fff;
	font-size: 15px;
	width: 80px;
}
.plainButton:active {
	box-shadow: 0 5px #666;
	transform: scale(0.7);
}
.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
.categoryInfo {
	color: white;
	margin-top: 10px;
	background-color: darkcyan;
	border-radius: 10px;
	width: 100%;
	font-size: large;
	font-family: sans-serif;
	font-style: oblique;
	box-shadow: 9px 9px #3e8e41;
}
.categoryList {
	background-color: ivory;
	border-radius: 10px;
	height: 30px;
	margin: 5px;

}
.questionFlow {
	width: 100%;
	height: 80%;
	background-color: darkolivegreen;
	box-shadow: rgb(109, 138, 53) 4px 5px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	border-radius: 10px;
	color: white;
}
.question {
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

.answerBtns {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin: 5px;
	width: 100%;
	justify-content: space-between;
}
.blue {
	background-color: rgb(69, 69, 230);
}
.green {
	background-color: #3e8e41;
}
.greenyellow {
	background-color: rgb(139, 223, 13);
}

.darkCyan {
	background-color: rgb(7, 133, 133);
}
.answerLabel {
	background-color:rgb(150, 159, 20);
	border-radius: 10px;
	width: 90%;
	height: 40px;
	align-self: auto;
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
	flex-wrap: wrap;
	align-items: center; /* vertible alignment of a flex container*/
	font-weight: 700;
}