:root {
  color-scheme: dark;
  background: #0a080e;
  font-family: system-ui, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #0a080e;
}

body {
  display: grid;
  place-items: center;
}

#game-shell {
  width: min(100vw, 1440px);
  height: min(100vh, 900px);
  display: grid;
  grid-template-rows: 1fr auto;
  background: #0a080e;
}

#game-container {
  min-height: 0;
  position: relative;
}

#dungeon-party-chaos {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  outline: none;
}

#game-status {
  margin: 0;
  padding: 8px 12px;
  color: #938ba1;
  background: #181421;
  font-size: 12px;
  text-align: center;
}
