.wrapper
  .card
    img(src="https://images.unsplash.com/photo-1477666250292-1419fac4c25c?auto=format&fit=crop&w=667&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D")
    .info
      h1 Mountain
      p Lorem Ipsum is simply dummy text from the printing and typeseting industry
      button Read More

  .card
    img(src="https://images.unsplash.com/photo-1425342605259-25d80e320565?auto=format&fit=crop&w=750&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D")
    .info
      h1 Road
      p Lorem Ipsum is simply dummy text from the printing and typeseting industry
      button Read More
      
  .card
    img(src="https://images.unsplash.com/photo-1503249023995-51b0f3778ccf?auto=format&fit=crop&w=311&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D")
    .info
      h1 Protester
      p Lorem Ipsum is simply dummy text from the printing and typeseting industry
      button Read More
View Compiled
*
  box-sizing: border-box

body, html
  width: 100%
  height: 100%
  display: flex
  align-items: center
  justify-content: center
  background: orange

.wrapper
  display: flex
  width: 90%
  justify-content: space-around

.card
  width: 280px
  height: 360px
  border-radius: 15px
  padding: 1.5rem
  background: white
  position: relative
  display: flex
  align-items: flex-end
  transition: 0.4s ease-out
  box-shadow: 0px 7px 10px rgba(black, 0.5)
  &:hover
    transform: translateY(20px)
    &:before
      opacity: 1
    .info
      opacity: 1
      transform: translateY(0px)
  &:before
    content: ""
    position: absolute
    top: 0
    left: 0
    display: block
    width: 100%
    height: 100%
    border-radius: 15px
    background: rgba(black, 0.6)
    z-index: 2
    transition: 0.5s
    opacity: 0
  img
    width: 100%
    height: 100%
    object-fit: cover
    position: absolute
    top: 0
    left: 0
    border-radius: 15px

  .info
    position: relative
    z-index: 3
    color: white
    opacity: 0
    transform: translateY(30px)
    transition: 0.5s
    h1
      margin: 0px
    p
      letter-spacing: 1px
      font-size: 15px
      margin-top: 8px
    button
      padding: 0.6rem
      outline: none
      border: none
      border-radius: 3px
      background: white
      color: black
      font-weight: bold
      cursor: pointer
      transition: 0.4s ease
      &:hover
        background: dodgerblue
        color: white
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.