body {
  background-color: black !important;
  border-top: 5px solid red;
  border-bottom: 5px solid red;
  min-height: calc(100vh - 10px);
}
.listeMenu {
	display: flex;
	justify-content: space-around;
	padding: 0;
  margin-top: 13px;
}
.listeMenu li {
  list-style: none;
}
.listeMenu a {
  font-family: 'work sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  color: red;
  text-decoration: none;
}
.listeMenu a:hover {
  color: red;
  text-decoration: none;
}
section {
   word-wrap: break-word;
   text-align: center;
   margin: 20px 0;
}
section h1 {
    font-family: 'raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: #fff;
}
section h2 {
    font-family: 'work sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    color: #757575;
}
.col-galerie {
  margin-bottom: 20px;
  overflow: hidden;
}
img {
  width: 100%;
}
img.zoom {
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    opacity: 1;
}
img.zoom:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.7;
}
footer {
  text-align: center;
}
footer p {
  font-family: 'work sans', sans-serif;
  font-size: 1rem;
  font-weight: 100;
  color: #9b9b9b;
}
