@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@200;300;400;600;800&display=swap');

body {
  font-family: 'Vazirmatn', sans-serif;
}

body::before {
  animation: none;
}

body::after {
  animation: none;
}

.container-quraa {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.souras-container {
  padding-bottom: 80px !important;

}

.container-Ayah {
  padding: 20px 10px;
  direction: rtl;
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
  width: 70%;


}


.container-Ayah .content {
  width: 100%;
  height: 500px;
  cursor: pointer;
  overflow-y: scroll;
  transition: 1s;
  line-height: 2;
  padding: 10px;

}

.container-Ayah .content .aya {
  font-size: 20px;

}

@media(max-width:768px) {

  .container-Ayah .content .aya {
    font-size: 15px;
  }
}

.container-Ayah .content .num {
  margin: 0 10px;
  font-size: 22px;
  color: #694d39;
}

.container-Ayah .content .aya {
  transition: 0.5s;
}

.container-Ayah .content .aya.active {
  background: #694d39;
  transition: 0.5s;
  border-radius: 5px;
}

#loadingSpinner {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translateX(-50%);
  animation: rotate 2s linear infinite;
  height: 100px;
  width: 100px;

}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}