.flip-card {
    background-color: transparent;
    width: 100%;
    max-width: 275px;
    height: 330px;
    perspective: 1000px;
    font-family: 'Source Sans 3', sans-serif;
  }
  
  .title {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin: 0;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid #171717;
    border-radius: 1rem;
  }
  /*255, 183, 72 amarillo
  207, 207, 207 gris


  255, 231, 222
  255, 211, 195
  23, 23, 23

  36, 36, 35
  255, 183, 72
  */
  .flip-card-front {
    background: linear-gradient(120deg, #FFB748 60%, rgb(207, 207, 207) 88%,
       rgb(255, 211, 195) 40%, rgba(207, 207, 207, 0.603) 48%);
    color: #171717;
  }
  
  .flip-card-back {
    background: linear-gradient(120deg, rgb(207, 207, 207) 30%, #FFB748 88%,
       #FFB748 40%, rgb(207, 207, 207) 78%);
    color: white;
    transform: rotateY(180deg);
  }