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

.container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 600px;
  max-width: 90%;
}

#text-to-type {
  font-size: 18px;
  margin-bottom: 10px;
}

#input-text {
  width: 100%;
  height: 100px;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#restart-btn {
  padding: 10px 20px;
  font-size: 16px;
}