/* Global page layout. */
#app_layout
{
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
}
 /* Dark space background. */
body
{
    background-color: black;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Font definition for the entire app. */
body,
html
{
    font-family: "Jersey 15", sans-serif;
}

button,
input,
select,
textarea
{
    font-family: inherit;
}

@font-face
{
    font-family: "Jersey 15";
    src: url("../Assets/Jersey_15/Jersey15-Regular.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}