.body {
	font-family: 'Baskervville Regular';
	font-size: 19px;
	max-width: 1920px;
	margin: auto;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	color: var(--green);
	justify-content: space-between;
}

.content-home {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 50px;
	flex-grow: 1;
	justify-content: center;
}

.section-default {
	display: flex;
	padding: 25px;
	max-width: 900px;
	margin: 0 auto 50px auto;
}

.section-home {
	padding: 25px;
}

.image-slider {
	width: 100%;
	height: auto;
	margin: auto;
}

em {
	text-decoration: underline;
	font-style: initial;
}

a {color: var(--green);}


@media screen and (max-width:960px) {
	.content-home {
	max-width: 600px;
	}
}



@media screen and (max-width:540px) {
	.body {
	font-size: 15px;
	}

	.section-home {
	justify-content: flex-start;
	}
}