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

h1 {
  margin-bottom: 20px;
}

#board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 0 auto 20px;
  width: 300px;
}

.tile {
  width: 50px;
  height: 50px;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.tile.correct {
  background-color: #6aaa64;
  color: white;
}

.tile.present {
  background-color: #c9b458;
  color: white;
}

.tile.absent {
  background-color: #787c7e;
  color: white;
}

#keyboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.keyboard-row {
  display: flex;
  gap: 4px;
}

.key {
  width: 30px;
  height: 50px;
  border: none;
  border-radius: 5px;
  background-color: #000000;
  color: #c9b458;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.key:hover {
  background-color: #b8bcc0;
}

.key.large {
  width: 60px;
}

#message {
  margin-top: 100px;
  min-height: 24px;
}

h3 {
  margin-top: 100px;
}

.div_author_layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 20px;
}

.div_author {
  width: 200px;
  display: flex;
  background-color: #000000;
  color: #c9b458;
  flex-direction: row;
  justify-content: center;
  height: 40px;
  border-radius: 20px;
}

.div_author a {
  color: #c9b458;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
}