body {
  background: #000;
  color: white;
  font-family: sans-serif;
  text-align: center;
}

#game {
  position: relative;
  width: 800px;
  margin: auto;
}

#background {
  width: 100%;
  display: block;
}

/* IMAGE BUTTONS */
.btn {
  position: absolute;
  cursor: pointer;
  transition: transform 0.1s;
}

.btn:hover {
  transform: scale(1.05);
}
.hotspot {
  position: absolute;
  cursor: pointer;
}

/* PC hotspot */
#pc {
  left: 490px;
  top: 170px;
  width: 153px;
  height: 83px;
}

#kimiko {
  left: 190px;
  top: 150px;
  width: 118px;
  height: 181px;
}

#bed {
  left: 2px;
  top: 255px;
  width: 437px;
  height: 293px;
}

#desk {
  left: 455px;
  top: 220px;
  width: 188px;
  height: 180px;
}

#wall {
  left: 627px;
  top: 9px;
  width: 176px;
  height: 325px;
}

#trashcan {
  left: 565px;
  top: 480px;
  width: 158px;
  height: 62px;
}

/* DIALOGUE BOX */
#dialogue-box {
  width: 800px;
  margin: 15px auto;
  background: rgba(0,0,0,0.85);
  border: 2px solid white;
  padding: 10px;
  display: none;
}

#next {
  margin-top: 8px;
}


#choice-box {
  width: 800px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#choice-box button {
  padding: 5px 10px;
  cursor: pointer;
  background: #222;
  color: white;
  border: 2px solid white;
  transition: 0.1s;
}

#choice-box button:hover {
  background: white;
  color: black;
}

#fade {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 2s ease;
}

#fade.hidden {
  opacity: 0;
}