@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html { 
  margin:0;
  padding:0;
  background: url(../images/fond.jpg) no-repeat center fixed; 
  -webkit-background-size: cover; /* pour anciens Chrome et Safari */
  background-size: cover; /* version standardisée */
  font-family: 'Roboto', sans-serif;
}

.flex {
	display:flex;
	flex-direction:column;
	width:400px;
	height:100vh;
	margin-left:10%;
	justify-content:center;
	align-items:center;
	color:#FFF;
}

.c-bleu {color:#61bbde;}

h1 {
	color:#FFF;
	font-size:20px;
}

h1 span {
	font-size:14px;
	color:#61bbde;
}

ul {
	font-size:16px;
	line-height:18px;
	list-style:none;
}

ul li {
	margin-bottom:10px;
}

a {
	color:#FFF;
}

a:hover {
	color:#61bbde;
}