body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #1a1a1a;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./Images/backgroundImg.jpg");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.drum-kits-wrapper {
  /* background-color: yellow; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  /* width: 80vw; */
  text-align: center;
}

.drum-kit {
  padding: 10px 25px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  color: white;
  border: 4px solid black;
  border-radius: 3px;
}

span {
  display: block;
  font-size: 10px;
  margin-top: 3px;
  color: #907227;
  font-weight: 900;
}

/* Button animation */
.playing {
  animation: flash-pop 0.2s ease-out forwards;
}

@keyframes flash-pop {
  0% {
    transform: scale(1);
    border-color: transparent;
  }
  50% {
    transform: scale(1.2);
    border-color: #ffff00;
    font-size: 1.2em;
    box-shadow: 0 0 15px #ffff00;
  }
  100% {
    transform: scale(1.1);
    border-color: #ffff00;
    font-size: 1.1em;
  }
}

/* Mobile view */
@media screen and (max-width: 480px) {
  body {

    background-position: 50% 100%;
    
  }

  .drum-kits-wrapper {
    width: 90vw;
    gap: 5px;
  }

  .drum-kit {
    width: 3rem;
    height: 2rem;
    padding: 0;
    border: 3px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  span {
    display: block;
    font-size: 0.4rem;
    margin-top: 1px;
    color: #907227;
  }
}

/* Tablet view */

@media screen and (min-width: 481px) and (max-width: 768px) {
  body {
    background-position: 50% 15%;
    
  }

  .drum-kits-wrapper {
    width: 70vw;
    gap: 5px;
  }

  .drum-kit {
    width: 4rem;
    height: 2rem;
    padding: 0;
    border: 3px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  span {
    display: block;
    font-size: 0.4rem;
    margin-top: 1px;
    color: #907227;
  }
}
