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

body {
  background: #FAF9F6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Roman', Times, serif;
  color: #2c2c2c;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  /* border: 0.5px solid #2c2c2c; */
  /* border-radius: 60px; */
}

#blob {
  width: 200px;
  height: 200px;
}

#track-name {
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  max-width: 300px;
}

#scrubber {
  width: 250px;
  accent-color: #2c2c2c;
}

#time {
  display: flex;
  justify-content: space-between;
  width: 250px;
  font-size: 0.85rem;
  opacity: 0.7;
}

#controls {
  display: flex;
  gap: 4.6rem;
}

#controls button {
  background: none; 
  color: rgba(44, 44, 44, 0.4);
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#controls button:hover {
  color: #2c2c2c;
}

#controls button svg {
  display: block;
}

#play .play-icon polygon {
  color: rgba(44, 44, 44, 0.4);
  transition: fill 0.2s;
}

#play:hover .play-icon polygon {
  fill: #2c2c2c;
}
