@font-face {
    font-family: comical;
    src: url("assets/fonts/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;

    background-color: white;
}

html, body {
    overscroll-behavior: none;
}

.tiling {
    position: relative;
    display: flex;
    flex-direction: column;
    place-items: center;
    justify-content: center;

    height: 100vh;
    width: 100vw;

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

    align-content: center;

    overflow: hidden;
}

.tiling::after {
    z-index: -50;
    position: absolute;
    top: 0;
    content: "";
    mask-image: url("/assets/images/question.svg");
    mask-size: 100px;
    mask-repeat: repeat;
    background-color: #eee;
    height: 100vh;
    width: 100vw;
    animation: scrollStars 60s linear infinite;
}

@keyframes scrollStars {
    0% {
        mask-position: 0 0;
    }
    100% {
        mask-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: 0 -2px;
    padding: 0;
    text-transform: uppercase;
}

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

.return {
    z-index: 50;
    height: 100vh;
    width: 100vw;
    margin-top: -0.5vh;
    position: absolute;
    padding: 10px;
}

a {
    text-decoration: none;
}

.options {
    height: 150px;
    width: 300px;
    align-content: center;
    font-family: comical, sans-serif;
    -webkit-text-stroke: 0 white;
    position: absolute;

    bottom: 20px;
    left: 20px;
}

#helpMenu {
    -webkit-text-stroke: 3px white;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    position: absolute;
    z-index: 100;
    background-color: #00000022;

    backdrop-filter: blur(10px);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    display: none;

    padding: 20px;
}