body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: aquamarine;
  margin: 0;
  padding: 0;
}

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

h1 {
  font-size: 24px;
}

.word-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.letter-box {
  width: 30px;
  height: 30px;
  border: 1px solid black;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

#clue,
#guesses {
  font-size: 18px;
}

#guess-input {
  margin-top: 20px;
  padding: 8px;
  width: 90px;
}

#submit-button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#submit-button:hover {
  background-color: #0056b3;
}

#feedback {
  margin-top: 20px;
  font-style: italic;
  color: black;
}


.button-link {
   display: inline-block;
   padding: 10px 20px;
   background-color: #007bff;
   color: #ffffff;
   text-align: center;
   border-radius: 5px;
   text-decoration: none; /* Removes the underline from links */
   font-weight: bold;
   transition: background-color 0.3s; /* Smooth background color transition on hover */
 }

 .button-link:hover, .button-link:focus {
   background-color: #0056b3;
   color: #FFFFFF;
   text-decoration: none; /* Keeps the underline off on hover/focus */
 }