.poetry-page {
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  margin: 0;
  font-family: "Orbitron", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab-button {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: #fff;
  border-radius: 0.5%;
}

.tab-button.active,
.tab-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  border-radius: 3%;
}

.poem-display {
  width: 80%;
  max-width: 800px;
  border: 1px solid #fff;
  border-radius: 5%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  text-align: center;
}

.poem-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.poem-body p {
  margin: 0.5rem 0;
}
