body {
  text-align: center;
  background: radial-gradient(circle, #2c3e50 0%, #000000 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}

h1 {
  font-size: 5rem;
  color: #DBEDF3;
  font-family: "Arvo", cursive; 
  letter-spacing: 5px;
  text-shadow: 3px 0 #DA0463;

}

footer {
  color: #ebf3db;
  font-family: sans-serif;
}

.w {
  background-image:url("images/tom1.png");
}

.a {
  background-image:url("images/tom2.png");
}

.s {
  background-image:url("images/tom3.png");
}

.d {
  background-image:url("images/tom4.png");
}

.j {
  background-image:url("images/crash.png");
}

.k {
  background-image:url("images/kick.png");
}

.l {
  background-image:url("images/snare.png");
}

.set {
  margin: 10% auto;
}

.game-over {
  background-color: red;
  opacity: 0.8;
}

.red {
  color: red;
}

.drum {
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.1); 
  font-size: 3.5rem;
  color: #fff;
  background-color: #fff; 
  
  backdrop-filter: blur(10px); 
  border-radius: 20px;
  width: 130px;
  height: 130px;
  margin: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform 0.1s;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  -webkit-text-stroke: 1px black; 

  /* Add these to make sure the images fit perfectly inside the buttons  //background-size: 90%;  */
  image-rendering: -webkit-optimize-contrast; 
  padding: 10px; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%
}

.drum:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: #DA0463;
}
@keyframes hit-glow {
  0% { box-shadow: 0 0 0px #DA0463; transform: scale(0.95); }
  50% { box-shadow: 0 0 40px #DA0463, 0 0 70px #DA0463; transform: scale(1.05); }
  100% { box-shadow: 0 0 0px #DA0463; transform: scale(1); }
}
.pressed {
  transform: scale(0.95);
  background-color: rgba(218, 4, 99, 0.7); /* Deep pink with transparency */
  box-shadow: 0 0 20px #DA0463, 0 0 40px #DA0463; 
  border-color: white;
  animation: hit-glow 0.15s ease-out;
}
