@font-face {
    font-family: pc-9800;
    src: url(pc-9800.ttf);
}

body {
    height: 100vh;
    width: 100vw;
    background-color: black;
    color: white;

    font-family: pc-9800;

    user-select: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    margin: 0px;
    overflow: hidden;
}

ul {
    font-family: pc-9800;
}


.gamebody {
    height: 90%;
    max-width: 100%;
    margin: 10vh 10vw;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

    overflow: hidden;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog { 
    font-size: 3em;
    width: 80%;
    max-width: 800px;
    display: block;
}

#fullscreen {
    background: #300000;
    padding: 0.5em;
    cursor: grab;
}

#fullscreen:hover {
    background: #500000;
}

a, a:visited {
    color: #500000;
}

a:hover {
    color: #aa0000;
}

/* button {
    z-index: 999;
    position: absolute;
    bottom: 2em;
    right: 2em;

    font-family: pc-9800;
    background: black;
    color: white;
    border-radius: 0;
    border: none;
} */

@media (max-width: 700px) or (max-height: 600px) {
    .gamebody {
        margin: 5vh 5vw;
    }
    .dialog {
        font-size: 1.5em;
        width: 90%;
    }
}

@media (orientation: portrait) {
    body {
        background-size: cover;
    }
}

/* CHARACTER SPEAKING TAGS 1/2 */
/* add any new character tags into the below */

.dialog {
    /* default text, all other classes will override these */
    /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
    text-shadow: 0px 0px 5px;
    text-align: center;
    /* background: black; */
    padding: 0.125em;
}

.dialog.old {
    /* old lines */
    opacity: 50%;
    background: none;
    text-shadow: none;
}

.narration {
    color: #fff;
}

/* CHARACTER SPEAKING TAGS 2/2 */
/* replace the below with whatever characters you have set up in assets.js */

.elisabetta, .carmen, .angela {
    text-align: left !important;
}

.elisabetta::before {
    content: "ELISABETTA | ";
}

.carmen::before {
    content: "CARMEN | ";
}

.angela::before {
    content: "ANGELA | ";
}

.title {
    background: none;
    font-size: 4em;
}

.title.old {
    opacity: 100%;
    text-shadow: 0px 0px 5px;
}