* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Amiri', serif;
  text-align: center;
  width: 100%;
  margin: auto;
  background: linear-gradient(to top, #F9F9F9, #c8b170), url("bg3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: color-burn;
  overflow-x: hidden;
  overflow-y: scroll;
}

.sura {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;

  margin: auto;
  padding: 10px;
  flex-wrap: wrap;
}

.sura::-webkit-scrollbar {
  display: none;
}


.image img {
  width: 80%;
  max-width: 350px;
  border-radius: 50%;
  margin-bottom: 20px;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

audio {
  width: 100%;
  background: linear-gradient(315deg, #027706 0%, #59f803 74%);
  border-radius: 12px;
  padding: 19px;
  border: none;
  margin-bottom: 20px;
  max-width: 2400px;
}

audio::-webkit-media-controls-panel {
  background: linear-gradient(315deg, #027706 0%, #59f803 74%);
  border-radius: 12px;
}

#audio-player {
  background: linear-gradient(315deg, #027706 0%, #59f803 74%);
  border-radius: 15px;
  width: 100%;

  padding: 10px;
  border: none;
  margin-bottom: 20px;
}

.options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.options select {
  width: 90%;
  max-width: 400px;
  padding: 10px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(315deg, #03ad08 0%, #328a03 74%);
  color: white;
  font-size: 18px;
  font-weight: bolder;
}

.options select option {

  font-size: 19px;
  font-weight: bolder;
}

.back {
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 10px;

}

.back .btn {
  width: 100%;
  max-width: 300px;
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: bolder;
  background: #18d557;
  border: none;
  padding: 25px;
  border-radius: 8px;
  transition: 0.35s ease-in-out;
  position: relative;
  text-align: center;
}

.back .btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  background: #4fdc56;
  box-shadow:
    -7px -7px 20px 0px #fff9,
    -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002,
    4px 4px 5px 0px #0001;
  transition: all 0.35s ease-in-out;
}

.back .btn:hover {
  color: white;
  background: #5bed62;

}

.back .btn:hover:after {
  height: 100%;
}

.back .btn:active {
  transform: translateY(2px);
}

#option {
  padding: 15px;
  border-radius: 10px;
  background: #55da5c;
  color: black;
  font-size: 17.2px;
  font-weight: bolder;
  text-align: center;
  transition: all 0.35s ease-in-out;
}

#option:hover {
  background-color: #6dfd74;
}

.control {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.control i {
  font-size: 25px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5bed62;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.control i:hover {
  background-color: #2ef738;
}

.control a {
  text-decoration: none;
  color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5bed62;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.control a:hover {
  background-color: #6dfd74;
}

/* Responsive Design */

@media screen and (max-width: 1024px) {
  .image img {
    width: 70%;
  }

  .back .btn,
  audio,
  #audio-player {
    width: 100%;
  }

  .sura {
    padding: 12px;
  }

  body {
    padding: 10px;
    height: auto;
  }

  .control {
    gap: 30px;
  }

  .control i {
    font-size: 20px;
    border-radius: 50%;
    background-color: #5bed62;
    width: 40px;
    height: 40px;
    transition: all 0.35s ease-in-out;
  }

  .control a {
    border-radius: 50%;
    background-color: #5bed62;
    width: 40px;
    height: 40px;
    transition: all 0.35s ease-in-out;
  }

  .control a:hover {
    background-color: #6dfd74;
  }

  .options {
    flex-direction: row;
    justify-content: space-around;
  }
}

@media screen and (max-width: 768px) {
  .image img {
    width: 60%;
  }

  .control {
    gap: 30px;
  }

  .control i {
    font-size: 20px;
    border-radius: 50%;
    background-color: #5bed62;
    width: 40px;
    height: 40px;
    transition: all 0.35s ease-in-out;
  }

  .control a {
    border-radius: 50%;
    background-color: #5bed62;
    width: 40px;
    height: 40px;
    transition: all 0.35s ease-in-out;
  }

  .control a:hover {
    background-color: #6dfd74;
  }

  .options {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .back .btn,
  audio,
  #audio-player {
    width: 100%;
  }

  body {
    padding: 8px;
  }

  .sura {
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .image img {
    width: 70%;
  }

  .back .btn {
    padding: 20px;
  }

  #option {
    width: 90%;
  }
}