body {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  background-color: #282c34;
  color: white;
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
}

.nav-title {
  color: #61dafb;
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.logout-button {
  background-color: #282c34; 
  color: #737373;
  border: 1px solid #282c34;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.logout-button:hover {
  background-color: #282c34;
  color: #61dafb;
}

.drum-pad {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 20px;
}

.sound-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  font-size: 18px;
  background-color: #61dafb;
  color: #282c34;
  border: 2px solid #61dafb;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.sound-button:hover {
  background-color: #282c34;
  color: #61dafb;
}
