/*CSS for pupils - 2017 Michael Job*/
body{
    margin: 0;
    padding: 0;
}
canvas{
    display: block;
    margin-left: 5px;
    margin-top: 5px;
    outline: none;
}
.mobile {
    display: none;
}



/*
 Does not work on Smartphones, Tablets - needs Mouse Input.
 */

@media only screen and  (max-width: 1024px) {

    canvas{
        display: none;
    }

    .mobile {
        display: block;
    }
}