html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    background-color: #000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#game {
    position: fixed;
}

canvas {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #000;
}

* {
    cursor: url("../assets/pointer.cur"), auto;
}

/*!* Style for screens larger than 16:9 (wider screens) *!*/
/*@media screen and (min-aspect-ratio: 16/9) {*/
/*    !* Add your styles for screens wider than 16:9 here *!*/
/*    canvas {*/
/*        height: 100vh;*/
/*        width: auto;*/
/*    }*/
/*}*/

/*!* Style for screens smaller than 16:9 (narrower screens) *!*/
/*@media screen and (max-aspect-ratio: 16/9) {*/
/*    canvas {*/
/*        width: 100vw;*/
/*        height: auto;*/
/*    }*/
/*}*/

/*!* Style for screens larger than 16/9 (wider screens) *!*/
/*@media screen and (min-aspect-ratio: 194/135) {*/
/*    !* Add your styles for screens wider than 16:9 here *!*/
/*    canvas {*/
/*        height: 100vh;*/
/*        width: auto;*/
/*    }*/
/*}*/

/*!* Style for screens smaller than 16/9 (narrower screens) *!*/
/*@media screen and (max-aspect-ratio: 194/135) {*/
/*    canvas {*/
/*        width: 100vw;*/
/*        height: auto;*/
/*    }*/
/*}*/

/*input {*/
/*    border: 1px solid #000;*/
/*    border-radius: 5px;*/
/*    background-color: #fff;*/
/*    color: #000;*/
/*    font-weight: 400;*/
/*    text-align: center;*/
/*}*/