@charset "UTF-8";
/* CSS Document */

body {	
	padding:50px;
	margin:0;
	font-family: "Raleway", sans-serif;
	font-weight:400;
	font-style: normal;
	color:#3232aa;
	text-align:center;
}

.container {
	display: flex;
	justify-content: center; /* centre horizontalement */
	align-items: center;     /* centre verticalement */
	height: 100vh;           /* prend toute la hauteur de la fenêtre */
}

.content {
	padding: 20px;
}

h1 {
	font-family: "Raleway", sans-serif;
	color:#df2f85;
	font-weight:300;
	line-height:1em;
	font-size:24px; 
	margin-bottom: 15px;
}

p {
	font-family: "Raleway", sans-serif;
	color:#3232aa;
	font-weight:400;
	max-width:600px;
}

a {
	display:block;
	max-width:400px;
	font-family: "Raleway", sans-serif;
	font-weight:400;
	font-size:18px;
	text-decoration:none;
	margin:30px auto 0 auto;
	padding:10px 25px;
	background:#df2f85;
	color:#fff!important;
	border-radius:50px;
}

.bleu {
	color:#3232aa;
}

.rose {
	color:#df2f85;
}

.gris {
	color:#878787;
}

img {
	max-width:400px;
}