main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#drum-machine {
	display: flex;
	flex-direction: column;   
	align-items: center;
	justify-content: flex-start; 
	width: 50%;
	height: 75%;
	background: linear-gradient(145deg, #e0c56e, #b89a3c);
	border-radius: 3%;
	padding-top: 5%; 
	gap: 7%; 

	box-shadow:
		12px 12px 25px rgba(0,0,0,0.4),
		-6px -6px 12px rgba(255,255,255,0.15);

	border: 2px solid rgba(0,0,0,0.2);
}

#pad-bank {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



.drum-pad {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  color: white;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(145deg, #444, #222);
  box-shadow: 
    6px 6px 12px rgba(0,0,0,0.6),
    -4px -4px 8px rgba(255,255,255,0.05);
}

.drum-pad:active {
  transform: scale(0.95);
  box-shadow: 
    inset 4px 4px 8px rgba(0,0,0,0.7),
    inset -2px -2px 4px rgba(255,255,255,0.05);
}

.drum-pad:hover {
  background: #555;
}

#clipName {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80%;
	background-color: white;
	border-radius: 10px;
	padding: 10px;
}

@media (max-width: 576px) {
	#drum-machine {	
		width: 100%;
		height: 90%;	
	}
	#clipName {
	width: 95%;
	}
	#pad-bank {
  gap: 15px;
	}
}
