/********************* font yekanbakh ***************/
@font-face {
  font-family: YekanBakh;
  font-style: normal;
  font-display: swap;
  font-weight: 900;
  src:
    url(fonts/YekanBakh/YekanBakhFaNumHeavy.woff2) format('woff2'),
    url(fonts/YekanBakhFaNumHeavy.woff) format('woff');
}

@font-face {
  font-family: YekanBakh;
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src:
    url(fonts/YekanBakh/YekanBakhFaNumBold.woff2) format('woff2'),
    url(fonts/YekanBakh/YekanBakhFaNumBold.woff) format('woff');
}

@font-face {
  font-family: YekanBakh;
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src:
    url(fonts/YekanBakh/YekanBakhFaNumMedium.woff2) format('woff2'),
    url(fonts/YekanBakh/YekanBakhFaNumMedium.woff) format('woff');
}

@font-face {
  font-family: YekanBakh;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src:
    url(fonts/YekanBakh/YekanBakhFaNumRegular.woff2) format('woff2'),
    url(fonts/YekanBakh/YekanBakhFaNumRegular.woff) format('woff');
}

@font-face {
  font-family: YekanBakh;
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src:
    url(fonts/YekanBakh/YekanBakhFaNumLight.woff2) format('woff2'),
    url(fonts/YekanBakh/YekanBakhFaNumLight.woff) format('woff');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: YekanBakh;
  height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  height: 100vh;
  background: linear-gradient(to bottom, #aaaaaa, #eeeeee);
}

#spin_the_wheel {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#wheel {
  display: block;
}

#spin {

  font-family: Yekan Bakh;
  font-size: 23px;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  margin: -15%;
  background: #fff;
  color: #fff;
  box-shadow:
    0 0 0 8px currentColor,
    0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: 0.8s;
}

#spin::after {
  content: "";
  position: absolute;
  top: -17px;
  border: 10px solid transparent;
  border-bottom-color: currentColor;
  border-top: none;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
