body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 0.5em;
}

main {
  flex: 1;
  overflow-y: auto;
  padding: 1em;
}

#lyrics-container {
  white-space: pre-wrap; /* Păstrează formatul din fișierul text */
  font-size: 1.5em;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: center;
  gap: 1em;
  background-color: #f1f1f1;
  padding: 0.5em;
}

button {
  padding: 0.5em 0.5em;
  font-size: 0.7em;
  cursor: pointer;
}