div
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}

h1
{
	text-align: center;
}

p
{
	text-align: center;
}

body
{
	background-color: #F7F7F7;
}



/*!!!!! CODE DES PAGES DE PLUS DE 1024 PX DE LARGE !!!!!*/
@media (min-width: 1024px)
{
	#image_maintenance
	{
		height: 400px;
	}

	p
	{
		font-size: 50px;
	}
}



/*!!!!! CODE DES PAGES DE MOINS DE 1023 PX DE LARGE !!!!!*/
@media (max-width: 1023px)
{
	#image_maintenance
	{
		width: 90vw;
	}

	h1
	{
		font-size: 30px;
	}

	p
	{
		font-size: 35px;
	}
}