@import './reset.css';

body {
	font-family: sans-serif;
	font-size: 18px;
}

.wrap {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 15px;
}

button {
	background-color: #8080C8;
	border-radius: 5px;
	border: none;
	box-shadow: 0 5px 0px #A0A0A0;
	color: white;
	font-size: 1em;
	outline: none;
	padding: 10px 20px;
	position: relative;
}
button:hover {
	box-shadow: 0 3px 0px #A0A0A0;
	top: 2px;
}
button:active {
	box-shadow: 0 1px 0px #A0A0A0;
	top: 4px;
}
button:focus {
	outline: none;
}

label {
	font-weight: bold;
}

.options {
	margin: 10px 0;
}
.option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

select[multiple] {
	padding: 8px;
	border-radius: 5px;
	font-size: 1em;
}

input[type=text] {
	padding: 8px;
	font-size: 1em;
	border-radius: 5px;
}

.new-button {
	display: flex;
	flex-direction: column;
	align-content: stretch;
	margin-bottom: 10px;
}
.new-button button {
	font-size: 1.3em;
}

#drill-display {
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 10px;
}

.quiz {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 50px;
	margin: 5px 0;
}

.q {
	display: none;
}