.flip-box {
    background-color: transparent;
    /* width: 300px;
    height: 200px; */
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px;
  }
  
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 80%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  

  .flip-box-front, .flip-box-back {
    position:absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-box-front {
    border-radius: 10%;
    background-color: #bbb;
    color: black;
  }


  .flip-box-front2 {
    border-radius: 10%;
    background-color: #bbb;
    color: black;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-box-back {
    width:400px;
    height:300px;
    background-color: #1d2144;
    color: white;
    transform: rotateY(180deg);
    border-radius: 3%;
  }

  .flip-box-back .header {
    line-height: 1.625;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 10px;
    margin-left: 10px;
    text-align: center;
  }

  .flip-box-back .Paragraph {
    line-height: 1.625;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 10px;
    margin-left: 10px;
    text-align: center;
  }

  .flipper-link  {
    margin-top: 50px;
    color: #43baff;
    font-size: 14px;
    font-weight: bold;
  }


  .flipper-link:hover  {
    color: #2784ba;
    animation: slide1 3s ease-in-out 1;
    margin-left: 2px;
  }


  @keyframes slide1 {
    0% {
        transform: translate(0, 0);
      }
      50% {
        transform: translate(2px, 20);
      }
      100% {
        transform: translate(0 ,0);
      }
  }