/* style.css */
body {
  font-family: Arial, sans-serif;
  background-color: 
;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}
header {
  background-color: 
;
  color: white;
  padding: 20px 0;
}
main {
  margin: 20px auto;
  max-width: 800px;
}
#text-display {
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  min-height: 100px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
}
#text-input {
  width: 100%;
  height: 120px;
  font-size: 18px;
  padding: 10px;
  border: 2px solid 
;
  border-radius: 5px;
  resize: none;
}
#stats {
  margin-top: 10px;
}
#hint {
  background-color: 
;
  border: 1px solid 
;
  color: 
;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-weight: bold;
}
button {
  background-color:red
;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background-color: 
;
}
.hidden {
  display: none;
}
footer {
  margin-top: 40px;
  padding: 10px;
  background-color: 
;
  color: white;
}