/* Global styles */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100vh; /* Prend toute la hauteur de l'écran */
}

body {
	min-height: 100vh;
	background: #117dc3;
	color: #acb2b8;
	font-size: 14px;
	font-family: 'Motiva Sans', Helvetica, Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

/* Style pour le conteneur centré */
#centered {
	position: relative;
	width: 100%;
	min-height: 80vh;
	padding: 20px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin: 10px 0;
}

/* Styling pour le header */
header {
	width: 100%;
	color: white;
	padding: 15px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	border-radius: 10px 10px 0 0;

}

/* Styling pour le footer */
footer {
	width: 100%;
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 15px;
	font-size: 14px;
	font-family: fantasy
}
