/* =========================
   RESET
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   PÁGINA
   ========================= */

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: black;
  color: black;
  font-family: Verdana, sans-serif;
  overflow: hidden;
}


/* =========================
   SALA
   ========================= */

main {
  position: relative;

  width: min(457px, 100vw);

  height: 100vh;
  height: 100dvh;

  margin: 0 auto;

  background-color: white;
  background-image: url('/assets/room03_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* =========================
   UTILITÁRIOS
   ========================= */

.hidden {
  display: none !important;
}

.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* =========================
   HITBOX
   ========================= */

.buttons {
  position: absolute;
  inset: 0;
}

#main-hitbox {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}


/* =========================
   DIÁLOGO
   ========================= */

#main-dialogue {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  padding: 24px;
}


/* =========================
   CAIXA DE DIÁLOGO
   ========================= */

.dialogue-box {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 24px;

  min-height: 200px;

  padding: 24px;

  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
}


/* =========================
   TEXTO
   ========================= */

p {
  color: white;
  font-size: 14px;
  line-height: 2rem;
}


/* =========================
   BOTÕES
   ========================= */

button {
  padding: 8px;
  cursor: pointer;
}


/* =========================
   SETAS
   ========================= */

.room-arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  z-index: 100;

  padding: 10px;

  font-size: 14px;

  cursor: pointer;
}

#left-arrow {
  left: 10px;
}

#right-arrow {
  right: 10px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 457px) {
  main {
    width: 100%;
  }
}