/* reset */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
}

/**************** fonts ******************/
@font-face{
  font-family: 'irannastaliq';
  src: url('../fonts/IranNastaliq/IranNastaliq.ttf');
}

/**************** general style ******************/
:root {
  /* font size */
  font-size: 62.5%;
  /* website colors */
  --primary-color: #ffa300;
  --secondary-color: #fff;
}
body {
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #2D2C2A;
}

/**************** general style end ******************/

/**************** head style ******************/

.head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: irannastaliq;
  min-height: 100vh;
  width: 100vw;
  background-image: url("../assets/background.png");
  background-size: 100% 100%;
  background-position: fixed;
  background-repeat: no-repeat;
  margin: 0 !important;
  padding: 0;
}
.logo {
  height: 80%;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  justify-self: center;
  margin: auto 0;
}
.head__logo {
  height: 100%;
  width: 100%;
}
.head__logo img{
  width: 100% !important;
  height: 100% !important;
}
.para {
  display: flex;
  flex-direction: column;
  width: 32rem !important;
  word-spacing: 5px;
  font-size: 30px;
}
.head__para {
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin: 0 1rem;
}
.head__btn {
  width: 12rem;
  height: 4.6rem;
  margin: auto 0;
  place-items: center;
}

/**************** head style end ******************/


/**************** responsive *****************/