@font-face {
    font-family: Orbitron;
    src: url("../fonts/orbitron/Orbitron-VariableFont_wght.ttf");
}

@font-face {
    font-family: Pirulen;
    src: url("../fonts/pirulen/pirulen-rg.ttf");
}

body 
{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-family: Consolas, monospace;
    background-color: #25272C;
}

#backgroundFill
{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;

    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;

    background-image: url("../png/ultrawideBg.jpg");
    z-index: -1;
}

#gameCanvas
{
    transform: translateX(-50%);
}

canvas 
{
    position: absolute;
    left: 50%;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.typewriterContainer 
{
    display: inline-block;
    font-size: 100%;
    font-family: "Orbitron";
}

#userUIArea 
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#audioOffButton, #audioOnButton, #audioOnHoverButton
{
    position: absolute;
    bottom: 3vh;
    right: 3vh;
    width: 7.5vh;
    height: auto;
}

@media screen and (max-aspect-ratio: 1 / 1)
{
    #audioOffButton, #audioOnButton, #audioOnHoverButton
    {
        bottom: 12.5vh;
        right: 3vh;
    }
}