@font-face {
    font-family: 'Sketch Block';
    src: url('Sketch_Block.ttf') format('truetype');
    font-weight: 300; /* Light weight */
}

@font-face {
    font-family: 'Sketch Block Bold';
    src: url('path/to/Sketch_Block_Bold.ttf') format('truetype');
    font-weight: bold; /* Bold weight */
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow-y: scroll; /* Enable vertical scrolling */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

.center-container {
    text-align: center;
    color: #F87C56;
    flex-grow: 1; /* Allow the content to grow and fill the available space */
}

h1 {
    font-family: 'Sketch Block', sans-serif;
    font-size: 4em; /* Adjust the base font size */
}

footer {
    color: #F87C56;
    font-family: 'Sketch Block', sans-serif;
    padding: 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}
/* Media queries for responsiveness */
@media only screen and (min-width: 600px) {
    h1 {
        font-size: 2.5em;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 3em;
    }
}

@media only screen and (min-width: 1024px) {
    h1 {
        font-size: 4em;
    }
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
