.container {
    width: 100%;
}
h1 {
    font-family: 'Miracle', sans-serif;
    font-weight: bold;
	text-align:center;
}    

    /* PHOTOS */

.galerie {
	display: flex;
	flex-flow:wrap;
	justify-content:center;
    font-size: 55%;    
    float: right;
	width: 100%;
	margin-top:10%;
    
    }

.galerie img {
	flex: 2 2 auto;
	width: 50%;
	max-width: 280px;
	max-height: 120px;
	object-fit: cover;
	border: 2px solid white;
	border-radius: 2px;
	transform: scale(1);
	transition: transform 1s;
	margin: 6px 1;
}

.galerie img:hover {
	transform-origin: 40% 40%;
	transform: scale(2);
	z-index: 900;
	border-radius: 2px;
	box-shadow: none;
}
/* FIN PHOTOS */
.texte{
	Line-Height: 1.8;
}

footer {
	max-width: 100%;
	min-height: 50px;
	background: rgb(102, 164, 197);
	color: #fff;
	text-align: center; 
	margin-bottom:50px;
  }