@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;
}

.darsaam-bg {
  background: linear-gradient(45deg, #6c38b7, #10e1e5);
  background-size: 400% 400%;
  -webkit-animation: DarsaamBG 17s ease infinite;
  animation: DarsaamBG 17s ease infinite;
}

@-webkit-keyframes DarsaamBG {
  0% {
    background-position: 0% 51%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 51%;
  }
}

@keyframes DarsaamBG {
  0% {
    background-position: 0% 51%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 51%;
  }
}
/*# sourceMappingURL=styles.css.map */