* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.container {
  max-width: 1230px;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

body {
  width: 100%;
 height: 94vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../imgs/background-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#particles-js {
  width: 100%;
  height: 99vh;
  top: 0px;
  left: 0px;
  position: absolute;
}

.block {
  width: 360px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 100px 1px rgb(100, 100, 100);
  padding: 20px;
  position: relative;
  backdrop-filter: blur(3px);
  overflow: hidden;
}

.block .bars {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bars i {
  cursor: pointer;
}

.rower {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  animation: round 7s linear infinite;
  animation-play-state: paused;
  overflow: hidden;
}

.rower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rower.playing {
  animation-play-state: running;
}

.text1 {
  color: white;
  margin-bottom: 20px;
}

.time {
  display: flex;
  align-items: center;
  color: white;
  justify-content: space-between;
  font-size: 18px;
  width: 300px;
  padding: 10px;
  margin: 0px auto;
}

.volumeInput {
  margin-bottom: 30px;
  height: 3px;
  width: 200px;
  cursor: pointer;
}

.progres {
  width: 300px;
  background-color: rgb(255, 255, 255);
  height: 5px;
  margin: auto;
  border-radius: 2px;
  margin-bottom: 30px;
  cursor: pointer;
}

.progress {
  width: 100%;
  background-color: orange;
  height: 4.8px;
  border-radius: 2px;
}

.klyuch {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.klyuch .prevBtn,
.playBtn,
.nextBtn,
i {
  cursor: pointer;
  color: white;
  font-size: 25px;
}

.modal {
  min-width: 60%;
  min-height: 350px;
  right: 0px;
  top: 0px;
  z-index: 99;
  border-radius: 0px 20px 0px 20px;
  position: absolute;
  padding-left: 30px;
  right: -250px;
  background-color: rgba(0, 0, 0, 3);
  overflow-y: auto;
  transition: all 0.3s ease;
}

.modal li {
  color: white;
  cursor: pointer;
  font-size: 20px;
  margin-bottom: 5px;
  text-align: left;
}

.modal.active {
  right: 0px;
}

.modal i {
  width: 100%;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: end;
  cursor: pointer;
  padding: 30px 30px 20px 10px;
}
.loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  margin-top: 20px;
}
.loop i {
  font-size: 15px;
}
@keyframes round {
  0% {
    transform: rotate(0deg);
  }

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