@font-face {
    font-family: 'SpecialFont';
    src: url('special-font.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    font-family: 'SpecialFont', Arial, sans-serif;
}

canvas {
    border: 2px solid #fff;
}