:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
}

.game-frame {
  position: relative;
  width: 740px;
  height: 740px;
  overflow: hidden;
  background: transparent;
}

#game-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
