:root {
  --pageBlack: #262626;
  --pageYellow: #fadf72;
  --pagePurple: #552b55;
  --pageRed: #E1332d;
  --pageGreen: #87af9f;
  --grey: #879c9b;
  --lightGreen: #12ac86;
  --pageGrey: #90a0a6;
  --lightBlue: #d9ebf7;
}
body {
  margin-top: 50px;
  margin-bottom: 50px;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  /* overflow: hidden; */
  background-color: var(--lightBlue);
}
.card {
  position: relative;
  width: 300px;
  height: 260px;
  border-radius: 8px;
  margin:60px 20px;
  background-color: white;
  /* opacity: .5; */
  box-shadow: 0px 5px 20px rgba(0,0,0,.5);
  padding:20px 40px;
  transition: all .4s
}
.imgBox {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-60px);
  z-index: 1;
}
img {
  width: 100%;
  border-radius: 8px;
  z-index: 3;
}
.card:hover {
  height: 340px;
}
.content {
  padding:10px 20px;
  text-align: center;
  color: #111;
  transform: translateY(-200px);
  opacity: 0;
  z-index: 2;
  transition: all .3s;
}
.card:hover .content {
  opacity: 1;
  transform: translateY(-120px);
  transition-delay: .1s;
}