:root {
  --pageBlack: #262626;
  --pageYellow: #ffd83e;
  --pagePurple: #552b55;
  --pageRed: #E1332d;
  --pageGreen: #2ce771;
  --lightGreen: #12ac86;
  --pageGrey: #212121;
  --lightBlue: #42a8de;

}
body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container {
  width: 500px;
  height: 500px;
  position: relative;
  overflow: hidden;
}
img {
  height: 100%;
  /* margin-left: -180px; */
  position:relative;
  left: -180px;
  transition: all .2s;
}
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: snow;
  transition: all .2s;
  background-color: black;
  transform: translateY(100%);
}
.caption h1 {
  text-transform: uppercase;
  margin: 0;
  
}
.caption p {
  font-size: 18px;
  text-transform: capitalize;
}
.container:hover .caption{
  transform: translateY(0);
} 
.container:hover img {
  transform: translateY(-10%);
}