@font-face {
    font-family: comical;
    src: url("Comic Sans MS.ttf")
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;

    scrollbar-width: none;
}

html, body {
    overscroll-behavior: none;
}

.tiling {
    background-image: url("/bored.jpeg");
    background-size: 100px;
    background-repeat: repeat;
    height: 100vh;
    width: 100vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: center;
    color: black;
    align-items: center;
    -webkit-text-stroke: 7.5px white;
    paint-order: stroke fill;

    align-content: center;

    animation: scrollStars 60s linear infinite;
}

@keyframes scrollStars {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px -700px;
    }
}

.tile-holder {
    align-self: center;
    align-items: center;
    align-content: center;
    display: grid;
}

.entry {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
}

input {
    margin: 3px;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6, input {
    font-family: comical, sans-serif;
}

