.quiz {
	margin-top: 15px;
	margin-bottom: 15px;
	display: grid;
	grid-template-columns: minmax(120px,2fr) minmax(180px,3fr);/*repeat( 2, minmax( 150px, 400px ) );/*repeat( auto-fit, minmax(150px, 1fr) );*/
	grid-row-gap: 5px;
	grid-column-gap: 5px;
	line-height: 2;
}

.answer {
	/*color: white;*/
	background-color: rgba(173,185,110,0.35);
	border: thin solid black;
	border-radius: 5px;
	text-align: center;
	grid-column: 1 / 2;

}

.slider {
	/*color: white;*/
	background-color: rgba(173,185,110,0.35);
	border: thin solid black;
	border-radius: 5px;
	text-align: center;
	grid-column: 2 / 3;
}

.quiz img {
	width: 2rem;
	height: 2rem;
	float: right;
}

#quiz1 {
	min-width: 30vw;
	max-width: 80vw;
}
