body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 90%;
  text-align: center;
}

h1 {
  margin-bottom: 1rem;
}

textarea {
  width: 100%;
  height: 120px;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
  outline: none;
}

.counter {
  margin-top: 0.75rem;
  font-weight: bold;
  color: #333;
}

.counter.exceeded {
  color: red;
}
