body{
  overflow: hidden;
  margin: 0;
}
.music-toggle-wrapper{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.music-label{
  color: rgba(236, 226, 226, 0.7);
  font-size: 20px;
  font-family: cursive;
  white-space: nowrap;
}
.music-toggle{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}
.music-toggle:hover{
  background: rgba(255, 255, 255, 0.4);
}
.container{
  position:absolute;
  top:0;
  left:0;
  height:80%;
  width:30%;
  text-align:left;
  color:rgb(199, 221, 223);
  font-family:cursive;
}