/*
=============================================================
 CODEMODORE OS
 Style Sheet
 Version : 0.3.0
=============================================================
*/

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

html,
body{

    width:100%;
    height:100%;

    overflow:hidden;

    background:#6C5EB5;

    font-family:Consolas, monospace;

}

body{

    display:flex;

    justify-content:center;

    align-items:center;

}

#screen{

    display:block;

    width:1280px;
    height:800px;

    image-rendering:pixelated;
    image-rendering:crisp-edges;

    border:none;
    outline:none;

}