* {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

h1 {
    background: white;
    color: #171c20;
    width: fit-content;
    box-shadow: 5px 5px 0 #171c20;
    padding: 8px 16px;
}

body {
    background-image: url(bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: none;
    background-color: rgb(5, 15, 34);
}

footer {
    font-size: 12px;
    padding-left: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
}

/* Links */
a {
    text-decoration: none;
}
a:link {
    color: rgb( 233, 73, 154 );
}
a:visited {
    color: rgb( 110, 30, 71 );
}
a:hover {
    color: rgb( 252, 207, 230 );
}

.controls {
    background: white;
    color: #171c20;
    width: fit-content;
    box-shadow: 5px 5px 0 #171c20;
    padding: 16px;
    margin: 32px;
}

/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
#canvas {
    padding-right: 0;
    display: display;
    border: 0px none;
    visibility: hidden;
    box-shadow: 5px 5px 0 #171c20;
}
