@import url('https://fonts.cdnfonts.com/css/c64-pro-mono');

body, html { 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background: #6C5EB5; 
    cursor: text; 
}

#screen-container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100vw; 
    height: 100vh; 
}

#canvas-wrapper { 
    background: #352879; 
    width: 100%; 
    height: 100%; 
}

canvas { 
    width: 100%; 
    height: 100%; 
    display: block; 
    image-rendering: pixelated; 
}