.myCard {
    background-color: transparent;
    width: 340px;
    height: 425px;
    perspective: 1000px;
  }
  
  .title {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin: 0;
  }
  
  .innerCard {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
  }
  
  .myCard:hover .innerCard {
    transform: rotateY(180deg);
  }
  
  .frontSide,
  .backSide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* border-radius: 1rem; */
    color: white;
    box-shadow: 0 0 1em rgba(255, 255, 255, 1);
    font-weight: 700;
    animation: animate 3s linear infinite;
  }
  
  .backSide {
    transform: rotateY(180deg);
  }
  
  .frontSide::before,
  .backSide::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 110%;
    height: 110%;
    position: absolute;
    z-index: -1;
    border-radius: 1em;
    filter: blur(20px);
  }
  
  @keyframes animate {
    0% {
      box-shadow: 0 0 1em rgb(255, 255, 255);
    }
  
    50% {
      box-shadow: 0 0 1em rgb(0, 0, 0);
    }
  
    100% {
      box-shadow: 0 0 1em rgb(255, 255, 255);
    }
  }