body {
  font-family: Arial, sans-serif; 
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: rgb(185, 152, 216);
}

#curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

#soundsText {
  position: relative;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.2);

  font-size: 50px;
  margin: 30px;
  padding: 15px;
}

#soundsText::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255, 255, 255);
  filter: blur(8px);
  z-index: -1;
  transform: scale(1.1);
}

button { 
  position: relative;
  padding: 10px 20px; 
  margin: 10px;
  font-size: 16px; 
  cursor: pointer; 
  box-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  filter: blur(6px);
  z-index: -1;
  transform: scale(1.1);
  border-radius: inherit;
}



button:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

ul { 
  position: relative;
  list-style-type: none;  
  font-size: 18px; 
  background-color: grey;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 30px;
  overflow: hidden;
}

ul::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: grey;
  filter: blur(8px);
  z-index: -1;
  transform: scale(1.05);
  border-radius: inherit;
}


ul li { 
  padding: 5px 0;
  background: #f0f0f0; 
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
}

ul li:nth-child(1) {
  font-weight: bold;
  background-color: beige;
}