.container {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.drum-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.drum {
  background: #333;
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  width: 100px;
  height: 100px;
  cursor: pointer;
  box-shadow: 0 4px #111;
  transition: all 0.1s ease;
}

.drum span {
  display: block;
  font-size: 0.9rem;
  color: #bbb;
}

.drum:active,
.playing {
  transform: scale(1.1);
  background: #ff4081;
  box-shadow: 0 0 15px #ff4081;
}
.custom-link {
    margin-left: 10%;
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(38, 50, 56, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
  }

  .custom-link:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    box-shadow: 0 6px 20px rgba(38, 50, 56, 0.5);
    text-decoration: none;
  }