:root {
    --app-height: 100%;
 }
 
 html,
 body {
     padding: 0;
     margin: 0;
     overflow: hidden;
     width: 100vw;
     height: 100vh;
     height: var(--app-height);
     background-color: #000000;
 }
 

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

@font-face {
    font-family: PS2P;
    src: url("assets/fonts/PressStart2P-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }