@import "css/ui.css";

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    width: 100vw;
    height: 100vh;
    overflow: clip;
    display: flex;
    justify-content: center;
}

#game-canvas {
    width: min(100vw, 100vh);
    height: min(100vw, 100vh);
    background-color: #111;
}
