:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f4e6c9;
  background: #07090d;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
}

#game-shell {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 48% 42%, rgba(101, 73, 38, 0.2), transparent 34%),
    linear-gradient(135deg, #090d13 0%, #131925 46%, #08090c 100%);
}

#game-container {
  width: min(100vw, 177.78vh);
  height: min(56.25vw, 100vh);
  min-width: 320px;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(218, 177, 103, 0.45);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.56);
  background: #10131b;
}

canvas {
  display: block;
}
