html, body {
    width: 100%;
    height: 100%;
    touch-action: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;  
    background-color: #272744;
}
#title {
    position: absolute; 
    bottom: 3px; 
    left: 25px; 
    color: aliceblue;
    font-family: "Lucida Console", "Courier New", monospace;
}
#title2 {
    position: absolute; 
    bottom: 24px; 
    left: 25px; 
    color: aliceblue;
    font-family: "Lucida Console", "Courier New", monospace;
}
canvas {
    display: block;
    margin: auto;
    cursor: none;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: portrait) {
    canvas {
        transform: rotate(90deg);
        transform-origin: center center;
    }
}