:root {
    --body-bg-color: #1e212d;
    --primary-color: #eabf9f;
    --secondary-color: #b68973;
    --terciary-color: #faf3e0;
    --primary-font: 'DotGothic16';
    --secondary-font: 'Source Sans Pro';
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--body-bg-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    max-height: 100%;
}

header {
    text-align: center;
}

header h1 {
    font-family: var(--primary-font), sans-serif;
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

header h3 {
    font-family: var(--secondary-font), sans-serif;
    margin-top: 0;
    color: var(--secondary-color)
}

main {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}

#canvas {
    display: block;
    justify-self: center;
    border: 2px dashed var(--primary-color);
    margin: 3em auto;
}