body {
  margin: 0;
  height: 100vh;
  background: #eef2f7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial;
}

.container {
  width: 400px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  text-align: center;
}

textarea {
  width: 100%;
  height: 120px;
  padding: 8px;
  margin-bottom: 10px;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #4caf50;
  color: white;
  cursor: pointer;
}

.result {
  margin-top: 12px;
  font-weight: bold;
}

footer {
  font-size: 12px;
  color: gray;
  margin-top: 10px;
}
