body {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container:hover {
  transform: scale(1.05);
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

textarea:focus {
  outline: none;
  border-color: #4facfe;
}

.stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1.2rem;
  color: #555;
  margin-top: 1rem;
}

.stat {
  background-color: #f9f9f9;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  text-align: center;
  flex: 1;
  margin: 0 0.5rem;
}

.stat:first-child {
  margin-left: 0;
}

.stat:last-child {
  margin-right: 0;
}

.stat:hover {
  background-color: #f0f0f0;
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .stats {
    flex-direction: column;
  }

  .stat {
    margin-bottom: 0.75rem;
    margin-left: 0;
    margin-right: 0;
  }
}
