* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 90%;
  max-width: 600px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.quote {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.input {
  width: 100%;
  height: 100px;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
  margin-bottom: 1rem;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

.restart {
  padding: 0.7rem 1.5rem;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.restart:hover {
  background: #0056b3;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  .quote {
    font-size: 1rem;
  }
}
