* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transform: scale(-1, 1);
}
header p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-family: "Raleway", sans-serif;
}

.board {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.board .row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.board .row .cell {
  width: 4rem;
  height: 4rem;
  border: 2px solid #9b9b9b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  transform: scale(-1, 1);
}
.board .row .cell.correct {
  background-color: #6aaa64;
  color: #fff;
  border: none;
}
.board .row .cell.present {
  background-color: #c9b458;
  color: #fff;
  border: none;
}
.board .row .cell.absent {
  background-color: #787c7e;
  color: #fff;
  border: none;
}

.letters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 100;
}
.letters .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}
.letters .row .letter {
  width: 3rem;
  height: 4rem;
  border: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(-1, 1);
}
.letters .row .backspace {
  width: 5rem;
}
.letters .row .backspace svg {
  transform: scale(-1, 1);
  width: 50%;
}
.letters .row .enter {
  width: 5rem;
}

footer {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
}
footer a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
footer a:hover {
  color: #f00;
}/*# sourceMappingURL=index.css.map */