/*
Super Simple and Small 2D Platformer Game
*/

html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    background: #7000b7;
}

#phaser {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    
    /* flexbox */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}