body {
font-family: Arial;
text-align: center;
background: #1e1e2f;
color: white;
}

.container {
width: 70%;
margin: auto;
}

#textDisplay {
background: #2c2c3c;
padding: 15px;
border-radius: 8px;
margin-top: 20px;
font-size: 18px;
line-height: 1.6;
}

textarea {
width: 100%;
height: 120px;
font-size: 16px;
padding: 10px;
margin-top: 15px;
}

.stats {
display: flex;
justify-content: space-around;
margin-top: 20px;
}

.correct {
color: lightgreen;
}

.wrong {
color: red;
text-decoration: underline;
}
