:root {
    --bgsize: 713px
}

@font-face {
    font-family: "8bitoperator";
    src: url(https://file.garden/ZzItmWCopmQms8UN/8bitoperator.ttf);
}

body {
    font-family: "8bitoperator";
    color: #00ff00;
    height: 600px;
    background-color: black;
    background-image: url(all_of_the_assets/grid.png);
    background-attachment: fixed;
    background-size: repeat;
    animation: scroller 7s linear infinite;
}

@keyframes scroller {
    from {background-position: 0 0;}
    to {background-position: var(--bgsize) var(--bgsize);}
}