@font-face {
    font-family: "Pinar";
    src: url("https://landing.khodsakhte.ir/zi/fonts/Pinar-DS1-FD.woff")
      format("woff");
  }
  
  @font-face {
    font-family: "Estedad";
    src: url("https://landing.khodsakhte.ir/zi/fonts/Estedad-VF-FD.woff2")
      format("woff2-variations");
  }
  
  body {
    padding: 1rem;
    margin: 0;
    background: #edc0bf;
    text-align: center;
    background: linear-gradient(90deg, #edc0bf 0, #c4caef 58%);
    font-family: "Estedad", sans-serif;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Pinar !important;
  }
  
  .main-title {
    background: linear-gradient(to right, #ff8a00 0%, #da1b60 100%);
    font-size: 30px;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  
  .shape {
    position: absolute;
    width: 150px;
    top: 0.5rem;
    left: 0.5rem;
  }
  
  .box {
    /*   width: 400px; */
    height: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
  }
  
  .card {
    width: 140px;
    height: auto;
    backdrop-filter: blur(25px) saturate(138%);
    -webkit-backdrop-filter: blur(25px) saturate(138%);
    background-color: rgba(17, 25, 40, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    margin-top: 10px !important;
    /* margin-right: 5px !important; */
    margin: auto;
    padding-top: 5px;
    color: white;
  }
  
  .how-to-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #ea8fea;
    background-image: radial-gradient(
        at 47% 33%,
        hsl(164.48, 71%, 84%) 0,
        transparent 59%
      ),
      radial-gradient(at 82% 65%, hsl(41.54, 74%, 86%) 0, transparent 55%);
    border-radius: 12px;
  }
  
  .how-to-wrapper > .card {
    width: 100%;
    height: auto;
    padding: 5px;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    background-color: rgba(17, 25, 40, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
  }
  
  p,
  a {
    font-size: 1rem;
  }
  
  a {
    color: #4d4ae8;
    text-decoration: none;
  }
  
  .button {
    display: inline-flex;
    width: 60%;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10rem;
    transition: all 0.02s;
    font-weight: bold;
    color: rgb(0, 0, 0);
    font-weight: bold;
    margin: auto;
    z-index: 0;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
  }
  
  .button:hover {
    background: rgb(193, 228, 248);
    color: rgb(33, 0, 85);
  }
  
  .button:active {
    transform: scale(0.97);
  }
  
  .hoverEffect {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
  .hoverEffect div {
    background: rgb(222, 0, 75);
    background: linear-gradient(
      90deg,
      rgba(222, 0, 75, 1) 0%,
      rgba(191, 70, 255, 1) 49%,
      rgba(0, 212, 255, 1) 100%
    );
    border-radius: 40rem;
    width: 10rem;
    height: 10rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 3s linear;
    opacity: 0.5;
  }
  
  .button:hover .hoverEffect div {
    width: 8rem;
    height: 8rem;
  }
  
  @keyframes effect {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }