/*
Author: Enzo Mayo
Date: 12/09/2020
*/
canvas {
    border: 1px solid black;
    display: block;
    margin: 0 auto;
    background: #ffffff;
    pointer-events: auto;
    touch-action: none;
    
}

header h1 {
    text-align: center;
}

body {
    margin: 0;
    padding:  0;
    background: white;
    width: 100%;
    height: 100%;
    font-size: 1.5em;
    
}
/* Make a dark theme because I hate being blinded.*/

.info {
    padding: 1%;
    border: 1px solid black;
    margin: 0 auto;
}

/*For error output*/
#output {
    text-align: center;
}

.info div {
    display: none;
}

.info h1 {
    text-decoration: underline;
}

/*
Utility class for CSS.
*/
.show {
    display: block !important;
}