html {
  height: 100%;
}

body {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  background-color: rgba(204, 217, 187, .5);
  overflow: hidden;
}

a {
  color: #000;
}

.card-container {
  background-color: #ccd9bb;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
  display: flex;
  height: 300px;
  width: 300px;
}

.card-image {
  position: absolute;
  height: 300px;
  width: 300px;
}

#card-front {
  transition: transform 1s ease-in-out;
  transform: rotate(180deg);
}

#abel-image {
  position: relative;
  display: block;
  visibility: hidden;
  opacity: 0;
  height: 86px;
  width: 86px;
  margin: auto;
  transition: visibility 1s, opacity 1s linear, width .3s ease-in-out, height .3s ease-in-out;
}

#abel-image:hover {
  height: 300px;
  width: 300px;
}

@media (min-width: 576px) {
  .card-container {
    height: 500px;
    width: 500px;
  }

  .card-image {
    width: 500px;
    height: 500px;
  }

  #abel-image {
    height: 142px;
    width: 142px;
  }

  #abel-image:hover {
    height: 500px;
    width: 500px;
  }
}

@media (min-width: 768px) {
  .card-container {
    height: 600px;
    width: 600px;
  }

  .card-image {
    width: 600px;
    height: 600px;
  }

  #abel-image {
    height: 166px;
    width: 166px;
  }

  #abel-image:hover {
    height: 600px;
    width: 600px;
  }
}

@media (min-width: 992px) {
  .card-container {
    height: 700px;
    width: 700px;
  }

  .card-image {
    width: 700px;
    height: 700px;
  }

  #abel-image {
    height: 200px;
    width: 200px;
  }

  #abel-image:hover {
    height: 700px;
    width: 700px;
  }
}

/* @media (min-width: 1200px) {
  
} */