@font-face {
    font-family: "large";
    src: url("../assets/fonts/Px437_IBM_BIOS.ttf") format("truetype");
}


@font-face {
    font-family: "medium";
    src: url("../assets/fonts/Px437_IBM_VGA_9x16.ttf") format("truetype");
}

:root {
    font-family: monospace;

    --light: white;
    --dark: black;

    background: var(--dark);

    touch-action: none;
}

html, body {
    overflow: hidden;

    margin: 0; padding: 0;
    width: 100%; height: 100%;

    font-family: "medium";
}

#full-container video, #full-container img {
    width: 100%; height: 100%;
    object-fit: cover;

    background-color: black;
    filter: brightness(50%);
    /* opacity: 75%; */
}

#safe-container {
    padding: 1rem;

    width: 640px; height: 376px;
}

