/* :root {
	--lightBlue: hsl(198, 53%, 26%);
	--darkBlue: hsl(197, 84%, 19%);
	--fontGrey: #f0f0f0;
	--headerHeight: 77px;
	--hoverblue: hsl(197,53%,35%);
} */
:root {
	--sidebarWidth: 0px;
}



body {
	background-color: hsl(0, 0%, 85%);

}

.content {
	margin: auto;
	padding: 25px;
	color: hsl(0, 0%, 15%);;
	background-color: var(--fontGrey);
	width: min(800px,100%);
}

.questionAndAnswer {
	margin-bottom: 10px;
	list-style-type: disc;
}

.question {
	font-size: 1.1em;
	font-weight: bold;
}


.answer {
	margin-left: 4px;
	line-height: 1.5;
}


.article {
	text-decoration: underline;
	color: var(--lightBlue);
}


