@font-face {
    font-family: Nixie;
    src: url("./NixieOne.woff2");
}

html {
    background-color: #000018;
}

body {
    height: 100vh;
    width: 100vw;
    color: white;
    font-family: Nixie;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    margin: 0px;
    overflow: hidden;
}

.gamebody {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 1rem;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-evenly;
    overflow: hidden;
    gap: 1rem;
    cursor: crosshair;
}

#game {
    z-index: -1;
    position: absolute;
    inset: 0;
    bottom: 2rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    filter: contrast(3);
    pointer-events: none;
}

.gamebody:active {
    cursor: wait;
}

.gamebody:active #game {
    opacity: 0.98;
}

.dialog, .dialog3 {
    min-width: 10%;
    flex: 1;
    height: auto;
    font-size: 4.5vh;
    font-size: max(1rem, 4.5vh);
    width: 75%;
    display: flex;
    align-items: center;
    font-style: italic;
}

.dialog3 {
    flex: 3;
    font-style: normal;
}

.gamebody a {
    color: #ff00ff;
}
.gamebody a:visited {
    color: #ff00ff;
}

/* CHARACTER SPEAKING TAGS 1/2 */
/* add any new character tags into the below */

#text1, #text2, #text3 {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    text-shadow: 2px 2px 4px #000000, 2px 2px 4px #000000, 0 0 8px #000000;
}

#text1 {
    opacity: 0.25;
}

#text2 {
    opacity: 0.5;
}

/* CHARACTER SPEAKING TAGS 2/2 */
/* replace the below with whatever characters you have set up in code.js */

#text3.a {
    color: #93fcff;
}
#text3.b {
    color: #ff00ff;
}
#text3.a::before,
#text3.b::before,
#text3.a::after,
#text3.b::after {
    content: '"';
}
