/* style.css */

@font-face {
    font-family: 'Soul';
    src: url('../fonts/LTSoul-Regular.otf');
}

/* Set the canvas element to be the full size of the window */
canvas {
    width: 100%;
    height: 100%;
}

/* Center the canvas element on the page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas-container {
    width: 100%;
    height: 600px;
}

h1 {
    font-family: 'Soul', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 0;
}

p {
    font-family: 'Soul', sans-serif;
    font-size: 1.5em;
    text-align: center;
    margin-top: 0;
}

