body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.button-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#text-output {
  width: 80%;
  height: 200px;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  resize: none;
}

.secondary-grid {
  display: none;
}

.back-button {
  margin-top: 10px;
}
