/* copy and paste to style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #111;
  padding: 2.5em;
  border-radius: 10px;
  width: 1200px;
  box-shadow: 0 5px 18px rgba(255, 255, 255, 0.05);
}

#word-display {
  font-size: 1.5em;
  margin-bottom: 1.25em;
  line-height: 1.875em;
  color: #e0e0e0;
  font-size: 30px;
}

textarea {
  width: 100%;
  height: 150px;
  font-size: 1.25em;
  padding: 0.625em;
  margin-bottom: 1.25em;
  background-color: #222;
  color: #f1f1f1;
  border: 1px solid #444;
  border-radius: 5px;
  resize: none;
}

textarea:focus {
  outline: none;
  border-color: #888;
}

.stats {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  font-size: 1.25em;
}

button {
  padding: 0.625em 1.25em;
  font-size: 1.25em;
  margin-top: 1.25em;
  background-color: #333;
  color: #f1f1f1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #555;
}

.highlight {
  background-color: rgb(38, 38, 0);
}

.correct {
  color: green;
}

.incorrect {
  color: red;
}
