body {
  background-color: #fff;
  margin: 0;
  border-top: 5px solid blue;
  border-bottom: 5px solid blue;
  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: blue;
  text-decoration: none;
}
.listeMenu a:hover {
  color: blue;
  text-decoration: none;
}
section, .row {
  text-align: center;
  margin: 20px 0;
  font-family: 'raleway', sans-serif;
}
section h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 200;
}
section h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'work sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 200;
  color: #191919;
}
.row {
  margin: 30px 0;
}
.card {
  width: 288px;
  margin: 20px 10px 20px 10px;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);
}
img {
  width: 286px;
  height: 180px;
  -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: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.8;
}
.btn-primary {
  background-color: black !important;
  border-color: black !important;
}
.btn-primary:hover {
  background-color: blue !important;
  border-color: blue !important;
}
footer {
  text-align: center;
  bottom: 10px;
  right: 0;
  left: 0;
}
footer p {
  font-family: 'work sans', sans-serif;
  font-size: 1rem;
  font-weight: 100;
  color: #4d4d4d;
}
