* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

i,
svg {
  pointer-events: none;
}

.kick-pad,
.snare-pad,
.hat-pad {
  width: 5rem;
  height: 5rem;
  margin: 1rem 0.5rem;
  cursor: pointer;
}

.kick-pad {
  background: rgba(0, 0, 94, 0.8);
}

.snare-pad {
  background: rgb(94, 0, 94, 0.8);
}

.hat-pad {
  background: rgb(94, 0, 0, 0.8);
}

.kick-pad.active {
  background: rgba(0, 0, 255, 0.8);
}

.snare-pad.active {
  background: rgba(255, 0, 255, 0.8);
}

.hat-pad.active {
  background: rgba(255, 0, 0, 0.8);
}

.kick-track,
.hat-track,
.snare-track {
  display: flex;
  align-items: center;
  width: 70%;
  justify-content: space-between;
  margin-top: 5rem;
}

.hat,
.snare,
.kick {
  display: flex;
}

body {
  background: rgb(21, 21, 21);
}

h1 {
  color: rgb(180, 165, 165);
}

.sequencer {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  margin: 0rem 2rem;
}

.controls button {
  padding: 1rem;
  border: none;
  background: rgb(60, 65, 92);
  color: rgb(180, 165, 165);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.pad {
  transition: all 0.5s ease;
}

.play {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  background: rgb(60, 65, 92);
  color: rgb(180, 165, 165);
  border: none;
  cursor: pointer;
  margin-top: 3rem;
}

select {
  padding: 1rem;
  font-size: 1rem;
}

.mute.active {
  background-color: rgb(61, 56, 56);
}

.tempo {
  margin: 3rem;
  width: 30vw;
  color: rgb(180, 165, 165);
}

.tempo p {
  font-size: 1.5 rem;
  margin: 2rem;
  text-align: center;
}

.slider {
  padding: 0.2rem;
  -webkit-appearance: none;
  margin: 1rem 0rem;
  width: 100%;
  position: relative;
  background: rgb(60, 65, 92);
  cursor: pointer;
  color: rgb(180, 165, 165);
  border-radius: 1rem;
}

@keyframes playTrack {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
