body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(ellipse at center, #000014 0%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.moon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow:
    0 0 60px 30px #fff,
    0 0 100px 60px #f0f,
    0 0 140px 90px #0ff,
    0 0 60px 80px #0000ff;
}
.music-icon {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 10000;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-icon img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.music-icon:hover img {
  transform: scale(1.2);
  opacity: 1;
}

audio {
  display: none;
}