body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pixi-container {
  width: min(90vw, 160vh); /* Width limited by viewport width OR height */
  aspect-ratio: 16 / 9;
  max-width: 1280px;
  border: 4px solid black;
  background-color: black;
}

#pixi-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

@font-face {
  font-family: 'cnc_red_alert';
  src: url('assets/fonts/cnc_red_alert[INET].ttf') format('truetype');
}