.flip-cards-card {

    text-align: center;
    width: 250px;
    height: 350px;
    perspective: 1000px;
  }

  .flip-cards-card:hover .flip-cards-card-inner,
  .flip-cards-card:active .flip-cards-card-inner {
    transform: rotateY(180deg);
  }

  .flip-cards-card-inner {
    border: 1px solid var(--text-color);
    padding: 2%;
    border-radius: 15px;

    position: relative;
    width: 100%;
    height: 100%;

    transition: all 1s;
    transform-style: preserve-3d;
    box-shadow: 0px 5px 10px rgba(0,0,0, 0.6);
  }

  .flip-cards-card .flip-cards-front {

    width: 100%;
    height: 100%;

    backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap:1rem;

  }

  .flip-cards-card .flip-cards-back {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    transform: rotateY(180deg);

    text-align: center;

    background-position: center;

    background-size: cover;
    background-repeat: no-repeat;

  }

  @media only screen and (max-width:968px) {

    .flip-cards-card {

      width: 250px;
      height: 250px;

    }

    .flip-cards-card .flip-cards-front {

      gap:.5rem;
    }
  }
