body {
	background-color: RGB(248,241,228);
	background-image: url("ciel33.jpg");
	background-size: cover;
	height: 95vh;
	}

section {
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	border: solid white;
	overflow-y: auto; /* auto ou visible = depasse ! */
	height: 88vh; /* ajuste au pf, safari pb */
}

h1 {
	text-align: center;
	font-family: Cursive;
}

span {
	background-color: RGB(248,241,228);
	padding-left: 20px;
	padding-right: 20px;
}

img {
	margin: 5px;
}

footer {
	display: flex;
	justify-content: space-evenly;
	font-size: 1.2em;
	background-color: RGB(248,241,228);
}

* {box-sizing: border-box;} /* border ou content-box  */

.flex {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  grid-template-columns: 200px 200px 200px 200px 200px;
}

.container {
  padding: 10px;
  justify-content: space-between;
  align-content: space-between;
}

.item {
  padding: 10px;
  align-self: center;
}

.item:hover {
	background-color: lightgray;
}

/* ajout et modif alignement 2020-08-23 */