@font-face {
    font-family: 'DeterminationMono';
    src: url('fonts/DeterminationMonoWeb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DeterminationSans';
    src: url('fonts/DeterminationSansWeb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0 auto;
    width: 80vw;
    min-width: 600px;
    color: white;
    font-family: 'DeterminationMono', sans-serif;
    background-color: black;
    text-align: center;
}


.dialogue-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 566px);
    justify-content: center;
    gap: 15px 27px;
    margin: 15px auto;

}

.dialogue-box {
    text-align: left;
    /* margin: 15px auto 15px auto; */
    width: 566px;
    height: 140px;
    border: 6px solid white;
}

.dialogue-box > * {
    margin: 15px 15px 15px 15px;
}

.dialogue-box * {
    font-size: 32px;
}

.dialogue-text {
    list-style: "* " outside;
}

.dialogue-highlight-yellow {
    color: transparent;
    background: #FFFF3C;
    background: linear-gradient(0deg,rgba(255, 255, 60, 1) 0%, rgba(255, 255, 195, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    /* text-shadow: 1px 1px 0 rgba(76, 76, 0, 1);*/
}

.dialogue-highlight-yellow::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    text-shadow: 1px 1px 0 rgba(76, 76, 0, 1);
    z-index: -1;
}

.dialogue-highlight-red {
    color: transparent;
    background: #FF3C3C;
    background: linear-gradient(0deg, rgba(255, 60, 60, 1) 0%, rgba(255, 195, 195, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.dialogue-highlight-red::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    text-shadow: 1px 1px 0 rgba(76, 0, 0, 1);
    z-index: -1;
}

.dialogue-highlight-blue {
    color: transparent;
    background: #3C3CFF;
    background: linear-gradient(0deg, rgba(60, 60, 255, 1) 0%, rgba(195, 195, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.dialogue-highlight-blue::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    text-shadow: 1px 1px 0 rgba(0, 0, 76, 1);
    z-index: -1;
}

/* 
colors for green:
background: #0EFF0E;
background: linear-gradient(0deg, rgba(14, 255, 14, 1) 0%, rgba(168, 255, 168, 1) 100%);
rgba(0, 76, 0, 1) 
*/



h1 {
    font-weight: normal;
    font-family: 'DeterminationSans', serif;
}


