.layout,
.correction,
.graphics {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.content {
	background-color: var(--secondaryColor);
	padding: 20px;
	margin: 10px auto;
	border-radius: 10px;
	width: 70%;
}

h1 {
	color: var(--fourthColor);
	font-weight: bold;
	font-size: clamp(1.2em, 4vw, 2.5em);
	text-align: center;
	margin-bottom: clamp(10px, 2vh, 40px);
}

li {
	list-style-type: disc;
	color: var(--textColor);
	font-size: clamp(1em, 2.5vw, 1.2em);
	margin-left: 30px;
}

strong {
	font-weight: bold;
}
.notes {
	margin-top: 20px;
	font-size: clamp(0.8em, 2.5vw, 1em);
}

.notes > span {
	color: var(--textColor);
	font-style: italic;
}
@media screen and (max-width: 480px) {
	.content {
		background-color: var(--secondaryColor);
		padding: 20px;
		border-radius: 10px;
		width: 95%;
		margin-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.content {
		background-color: var(--secondaryColor);
		padding: 20px;
		border-radius: 10px;
		width: 95%;
		margin-top: 0;
	}
}
