body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 500px;
  margin: 50px auto;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666666;
}

h1 {
  text-align: center;
  color: #333333;
}

/* Styles the list items (li) */
li {
  margin-bottom: 5px; /* Adds some space between list items */
  font-size: 14px;
  color: #666666;
  font-family: Arial, sans-serif;
}


#word-input {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  outline: none;
}

#check-button {
  width: 100%;
  height: 40px;
  font-size: 16px;
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

#check-button:hover {
  background-color: #45a049;
}

#message-container {
  margin-top: 20px;
  text-align: center;
}

#word-message {
  display: inline-block;
  margin-top: 10px;
  padding: 5px;
  font-weight: bold;
}

#counter {
  margin-top: 20px;
  text-align: center;
  color: #888888;
}

.word-list {
  display: none; /* Initially hide the word list */
  margin-top: 20px;
  font-family: monospace;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 5px;
}

.show-list-button {
  background-color: #e7973c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.bottom-line {
  font-family: "Comic Sans MS", cursive;
  font-size: 14px;
  color: darkgreen;
  text-align: center;
}
