@import url('fontiran.css');
* {
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}

.hero__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hero__title {
    direction: rtl;
    color: white;
    font-family: "KalamehWebFaNum";
    font-weight: 400;
    font-size: 90px;
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 50px;
  }
}

.btn-outline {
    font-family: "KalamehWebFaNum";
    font-size: 24px;
    color: white;
    text-decoration: none;
    position: relative;
    border: 2px solid white;
    border-radius: 30px;
    padding: 8px 24px;
    mix-blend-mode: screen;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-outline:hover {
  color: black;
  border: none;
  background: white;
  border-radius: 8px;
}

.cheetah-bg {
    background: linear-gradient(45deg, #ff9801, #2d7864);
    background-size: 400% 400%;
    -webkit-animation: CheetahBG 17s ease infinite;
    animation: CheetahBG 17s ease infinite;
}

@-webkit-keyframes CheetahBG {
  0% {
    background-position: 0% 51%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 51%;
  }
}

@keyframes CheetahBG {
    0% {
        background-position: 0% 51%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 51%;
    }
}
/*# sourceMappingURL=styles.css.map */