body {
  background-color: #121212;
  color: #ffffff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

h1 {
  color: #00ffcc;
}

textarea {
  width: 80%;
  max-width: 600px;
  height: 150px;
  background-color: #1e1e1e;
  color: #ffffff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  resize: none;
}

.buttons {
  margin-top: 20px;
}

button {
  background-color: #00ffcc;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #00ccaa;
}
