/*Permet au corps de prendre toute la place */
html, body {
	height: 100%;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.site,
#page {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.site-content,
.ast-container {
	flex: 1;
}
/*Corps*/
.site-content {
    background-color: var(--ast-global-color-2);
    padding-top: 50px;
    border-top: 5px solid #d61c72;
}
/*Titre*/
.entry-content h2 {
    margin-bottom: 15px;
	color: sandybrown;
}
/*Texte*/
.entry-content p {
	font-size: larger;
	color: white;
}