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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html,
body {
  overflow: hidden;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: rgb(183, 199, 245);
  flex-wrap: wrap;
  font-family: Poppins, "sans-serif";
  color: #444;
}

.music-player {
  background-color: rgb(183, 199, 245);
  box-shadow: 1px 1px 42px #999;
  width: 400px;
  padding: 25px 35px;
  text-align: center;
  border-radius: 12px;
  margin: 0 24px 0 24px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.circle {
  background-color: royalblue;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 12px #999;
  width: 40px;
  height: 40px;
  position: relative;
}

.circle1 {
  flex-direction: column;
}

.range-wrapper {
  background-color: royalblue;
  display: flex;
  align-items: center;
  padding: 12px 28px 12px 12px;
  border-radius: 20px 0 0 20px;
}

.range-wrapper {
  position: absolute;
  top: 84px;
}

.sound-range {
  accent-color: #fff;
}

.small {
  width: 26px;
  height: 26px;
  z-index: 99999;
}

.sound-icon {
  filter: invert(100%);
}

.img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid royalblue;
  box-shadow: 0 10px 60px #999;
}

h1 {
  font-size: 20px;
  margin-top: 20px;
}

p {
  font-size: 14px;
}

#progress {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background-color: royalblue;
  border-radius: 4px;
  cursor: pointer;
  margin: 40px 0;
}

#progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: royalblue;
  border: 6px solid #fff;
  box-shadow: 1px 1px 12px #999;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.controls div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 1px 1px 32px #999;
}

.big {
  background-color: #4169e1 !important;
}

.big-icon {
  height: 42px !important;
  width: 42px !important;
  filter: invert(1) brightness(2) grayscale(1);
}

.controls div img {
  height: 20px;
  width: 20px;
}

@media (max-width: 432px) {
  .music-player {
    width: 300px;
  }
}

.circle:hover .range-wrapper {
  display: flex;
}

.range-wrapper {
  transform: rotate(270deg);
  display: none;
}
