/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: #aaa;
}

form {
  display: flex;
  flex-direction: column;
}

textarea {
  resize: vertical;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #333;
  background: #1e1e1e;
  color: #fff;
  min-height: 150px;
  margin-bottom: 20px;
  border-radius: 4px;
}

button {
  padding: 12px;
  font-size: 1rem;
  background: #6200ee;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #3700b3;
}

#result {
  margin-top: 30px;
  background: #1e1e1e;
  padding: 15px;
  border-radius: 4px;
  min-height: 50px;
}

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #777;
}
