body {
  font-family: arial, sans-serif;
  text-align: center;
  margin: 0;
}

h1 {
  margin-top: 0; 
}

.wrapper {
  background-color: #fff;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.content {
  background-color: #fff;
  margin: 0 auto 350px;
  max-width: 960px;
  overflow: hidden;
  width: 100%;
}

.clearfix:after {
  content: "."; 
  visibility: hidden; 
  display: block; 
  height: 0; 
  clear: both;
}

.parallax {
  position: relative;
  transition: all 0.3s ease-in-out; 
}

.landing {
  opacity: 0;
}

figure {
  overflow: hidden;
  position: relative;

  transition: all 0.3s ease-in-out;        
}
  
figcaption {
  background-color: green;
  bottom: 20px;
  color: #fff;
  display: block;
  padding:5px;
  position: absolute;
  
  left:-100%;
}

@media only screen and (max-width: 700px) {
  figcaption {
    display: none;
  }
}

figure img {
  display: block;
}

figure img, figcaption {
  transition: all 0.1s ease-in-out;
}

figure:hover {
  cursor: pointer;
}

figure:hover figcaption {
  left: 0%;
}

figure:hover img {
  transform: scale(1.1);
}

.floating {
  position: relative;
}

a {
  color: #fff;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style-type: none;
}