.game-container {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: auto;
  /* height: 70vh; */
  padding: 1em;
}

.wrong-letters-container {
  text-align: center;
}

.wrong-letters-container p {
  margin: 0 0 5px;
}

.wrong-letters-container span {
  font-size: 24px;
  border: 3px solid #6E7DAE;
  padding: 3px 10px;
  margin-right: .5em;
}

.word {
  display: flex;
  margin-top: 2em;
  justify-content: center;
}

.letter {
  border-bottom: 3px solid #6E7DAE;
  display: inline-flex;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  height: 50px;
  width: 20px;
}

.popup-container {
  /* background-color: rgba(0, 0, 0, 0.3); */
  width: 60%;
  margin: auto;
  margin-top: 2em;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup {
  background: #6E7DAE;
  color: #fff;
  border-radius: 5px;
  box-shadow: 10px 15px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.popup h2,
.popup h4 {
  font-family: sans-serif;
}

.popup a {
  font-family: sans-serif;
  color: #fff;
  text-decoration: underline;
}

.popup button {
  cursor: pointer;
  background-color: #fff;
  color: #6E7DAE;
  border: 0;
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 16px;
}

.popup button:active {
  transform: scale(0.98);
}

.popup button:focus {
  outline: 0;
}

.notification-container {
  display: none;
  /* background-color: rgba(0, 0, 0, 0.3); */
  border-radius: 10px;
  padding: 15px 20px;
  /* position: absolute;
  top: 250px;
  bottom: -50px;
  transition: transform 0.3s ease-in-out; */
}

.notification-container p {
  text-align: center;
  margin: 0;
}

.notification-container.show {
  display: block;
  /* transform: translateY(-50px); */
}

@media (prefers-color-scheme: dark) {
  .popup {
    background-color: hsl(228, 28%, 70%);
    box-shadow: 10px 15px 10px 3px rgba(0, 0, 0, 0.1);
  }

  .popup h2,
  .popup h4 a {
    color: rgb(74, 74, 74) !important;
  }

  .popup button {
    background-color: rgb(46, 50, 59);
    color: hsl(222, 14%, 70%);
  }
}