: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 .5s;
}
.caption {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: snow;
  transition: all .5s;
  background-color: rgba(0,0,0,0);
  transform: translateY(-100%);
}
.caption h1 {
  text-transform: uppercase;
  margin: 0;
  
}
.caption p {
  font-size: 18px;
  text-transform: capitalize;
}
.container:hover .caption{
  background-color: rgba(0,0,0,0.5);
  transform: translateY(0);
} 
.container:hover img {
  transform: scale(1.4) rotate(-10deg);
}