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