* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(120deg, #6a11cb, #2575fc);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 600px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

h1 {
  margin-bottom: 20px;
}

#quote {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 18px;
}

textarea {
  width: 100%;
  height: 120px;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  resize: none;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin: 15px 0;
  font-size: 16px;
}

button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

#start {
  background: #28a745;
  color: white;
}

#reset {
  background: #dc3545;
  color: white;
}

button:hover {
  opacity: 0.8;
}
