html {
  font-family: monospace;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121212;
  color: white;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(3px);
  z-index: 10;
  left: 0;
  top: 0;
}

#choices {
  display: none;
}

.visible {
  display: block !important;
}

.dialougeBox {
  padding: 24px;
  border: 2px solid #242424;
  transition: width 0.5s ease-out;
}

.dialouge {
  padding: 24px;
  border: 2px solid #242424;
  transition: all 0.5s ease-out;
  position: absolute;
  top: 50%;
  right: 100px;
  width: 300px;
  z-index: 11;
}

.dialouge::after,
.dialougeBox::after {
  content: "Press any key to contiune";
  position: relative;
  color: #424242;
  font-weight: bold;
  background-color: #121212;
  bottom: -32px;
  padding: 10px;
}

button {
  font-family: monospace;
  padding: 10px 25px;
  background-color: #121212;
  border: 2px solid #242424;
  color: white;
  margin: 10px;
  font-size: 18px;
}

button:hover {
  background-color: #242424;
}

.room {
  position: relative;
  text-align: center;
}

.room > img {
  height: 600px;
}

.room > button {
  position: absolute;
}

.puzzle {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 2px solid #242424;
  background-color: #121212;
  z-index: 100;
  margin: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.puzzle > button {
  flex: 0 0 29.3333%;
}

.on {
  background-color: green;
}

.on:hover {
  background-color: darkgreen;
}

.timer {
  position: absolute;
  font-size: 25px;
}
