@import url("https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.685);
  width: 10px;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: #212122;
  border-radius: 15px;
}

body {
  font-family: "Scheherazade New", serif;
  background: linear-gradient(90deg, #212121, #3b3b3b);
  direction: rtl;
  user-select: none;
}
.container {
  display: flex;
  height: 100vh;
}
.main-box {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff50;
  border-radius: 15px;
  box-shadow: 0px 7px 17px 2px #d3d3d3, inset -8px 6px 20px 6px #d3d3d3;
}
.main-box .ayah {
  text-align: center;
  width: 100%;
  height: 75vh;
  overflow-y: scroll;
  padding: 20px;
  background-color: aliceblue;
  margin: 20px;
  border-radius: 15px;
  line-height: 2.3;
}
.main-box .ayah p {
  font-size: 35px;
}
.main-box .ayah span {
  font-size: 25px;
  margin: 0 5px;
}
.main-box .ayah .aya.active {
  color: rgb(202, 14, 14);
}
.main-box .player {
  width: 100%;
}
.main-box .player audio {
  width: 100%;
}

.main-box .player .buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* padding: 20px 20px; */
}

.main-box .player .buttons .icon {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-nav {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: #212121;
  color: white;
  border: 1px solid white;
  transition: 0.5s;
  font-size: 25px;
  font-weight: bold;
  animation: up-down 3s ease infinite;
}
.btn-nav:hover {
  background-color: white;
  color: black;
  border-color: #212121;
}

.offcanvas-body .soura-box {
  width: 100%;
  border: 1px solid black;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ccc;
  margin-bottom: 10px;
}
.offcanvas-body .soura-box:hover {
  background-color: white;
}

.offcanvas-body .soura-box .aya-name {
  font-size: 30px;
  font-weight: bold;
}

.offcanvas-body .soura-box .aya-num {
  font-size: 30px;
  font-weight: bold;
}

@keyframes up-down {
  0% {
    top: 0px;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 0px;
  }
}
