@font-face {
    font-family: 'Source Code Pro';
    src: url('fonts/SourceCodePro-Regular.ttf');
}

@font-face {
  font-family: 'neon';
  src: url('fonts/Ultimate.ttf');
}
.neon-text {
    text-align: center;
    font-family:neon;
    font-size: 2rem;
    color: #ffd8d8;

    text-shadow: 
    .1vw 0vw   1vw #e50b0b, 
    .2vw 0vw   1vw #e50b0b,
    .2vw 0vw   1vw #e50b0b,
    .1vw 0vw   1vw #e50b0b,
    .2vw 0vw  1vw #e50b0b,
    .2vw 0vw  1vw #e50b0b,
    .1vw 0vw  1vw #e50b0b,
    .2vw 0vw  1vw #e50b0b, 
    .2vw 0vw  1vw #e50b0b;

}

::-webkit-scrollbar {
    display: none;
}


/* Colors */

:root {
    --gameTitle: #eb1417;
    --accent1: #ff5c00;
    --accent2: #ff5c00;
    --bg: #092286;
    --fg: #ECF0F1;
    --sidebar: #565d55;
}


/* Page structure */

html, body {
    margin: 0;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    display: flex;
    flex-direction: row;
    font-family: 'Source Code Pro', monospace;
    line-height: 1.6;
    min-height: 100vh;
}

#game {
    align-items: center;
    display: flex;
    flex: 1;
}

#sidebar {
    background-color: var(--sidebar);
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    max-width: 280px;
    overflow-y: scroll;
}

header, main {
    padding: 16px;
}




main {
    flex: 1;
    padding-bottom: 0;
    padding-top: 0;
}


/* Page content */

canvas {
    border: 1px solid var(--accent1);
    display: block;
    margin: 0 auto;
}



h2, h3, h4 {
    color: var(--accent1);
    line-height: 1.2;
    text-align: center;
}

h5,h6
{
    color: var(--accent1);
    line-height: 1.2;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin: 10px 0;
}

th,td
{
    padding: 10px;
}

.control {
    color: var(--accent2);
    font-weight: bold;
    
}

#debug {
    display: none;
}
