html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d1b2a;
  font-family: "Press Start 2P";
}

.bonfire {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}

.fire {
  font-size: 32rem;
  z-index: 1;
  margin-bottom: -20px;
  pointer-events: none;
}

h1 {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  margin-bottom: -24rem;
  margin-left: 4rem;
  margin-right: 4rem;
}

.wood-layout {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wood {
  display: inline-block;
  padding: 16px 16px;
  width: 240px;
  background-color: #8b5a2b;
  border: 4px solid black;
  color: white;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: all 0.1s ease;
  box-shadow: 4px 4px #d2a679, -4px -4px #5c3a21;
}

.wood.tapped {
  box-shadow: 4px 4px #5c3a21, -4px -4px #d2a679;
}
