@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.header-text {
  display: flex;
  width: auto;
  height: 30vh;
  justify-content: center;
  align-items: center;
}

.special {
  color: #6b64f3;
}

.header{
  font-family: "Poppins", sans-serif;
  height: auto;
  font-size: 80px;
  font-weight: 900;
  /* background-color: #6b64f3; */
}

.card-container{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    position: relative;
    /* top: 10vh; */
}

.flip-card {
    background-color: transparent;
    width: 190px;
    height: 254px;
    perspective: 1000px;
    font-family: sans-serif;
    /* flex: 1 1 calc((100% - 60px) / 3);
    margin: 10px; */
  }
  
  .title {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin: 0;
    color: white;
  }
  
  .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;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid coral;
    border-radius: 1rem;
  }
  
  .flip-card-front {
    /* background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%,
       rgb(255, 211, 195) 40%, rgba(255, 127, 80, 0.603) 48%);
    color: coral; */
    background-image: url(../assets/IMG_0800.png);
    justify-content: center;
    background-size: contain;
    background-position: center;
  }

  .flip-card-front p{
    color: white;
  }
  
  .flip-card-back {
    /* background: linear-gradient(120deg, rgb(255, 174, 145) 30%, coral 88%,
       bisque 40%, rgb(255, 185, 160) 78%); */
    color: black;
    transform: rotateY(180deg);
  }

  .flip-card-back img{
    width: 70px;
    height: 80px;
    background: #6b64f3;
    border-radius: 15px;
    margin-top: 25px;
    margin-bottom: 5px;
    margin-left: 30%;
    /* margin-top: 25px; */
    object-fit: cover;
  }

  .flip-card-back .title{
    position: relative;
    font-size: 1.1rem;
    color: black;
  }

  .flip-card-back p{
    font-size: 0.8rem;
  }