@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Roboto+Mono:wght@400;700&family=Share+Tech+Mono&display=swap');

@font-face {
    font-family: JetBrainsMono;
    src: url(../fonts/JetBrainsMono-Regular.woff2);
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../fonts/JetBrainsMono-Bold.woff2);
    font-weight: bold;
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../fonts/JetBrainsMono-Italic.woff2);
    font-style: italic;
}

@font-face {
    font-family: "Inconsolata Condensed";
    src: url(../fonts/Inconsolata-CondensedRegular.otf);
    font-weight: normal;
}

@font-face {
    font-family: "Inconsolata Condensed";
    src: url(../fonts/Inconsolata-CondensedLight.otf);
    font-weight: lighter;
}

@font-face {
    font-family: "Inconsolata Condensed";
    src: url(../fonts/Inconsolata-CondenseBold.otf);
    font-weight: bold;
}

@font-face {
    font-family: "Inconsolata SemiCondensed";
    src: url(../fonts/Inconsolata-SemiCondensedRegular.otf);
    font-weight: normal;
}

@font-face {
    font-family: "Inconsolata SemiCondensed";
    src: url(../fonts/Inconsolata-SemiCondensedLight.otf);
    font-weight: lighter;
}

@font-face {
    font-family: "Inconsolata SemiCondensed";
    src: url(../fonts/Inconsolata-SemiCondenseBold.otf);
    font-weight: bold;
}

body {
    background-color: rgb(13,17,23);
    color: white;
    font-family: "Inconsolata SemiCondensed", "JetBrainsMono", "Courier New", monospace, sans-serif;
    font-size: 16px;
    /* font-stretch: condensed; */
}

h1 {
    font-family: "urw-din-condensed", sans-serif;
    font-weight: normal;
    color: white;
    font-size: 38px;
    text-align: center;
}

h2 {
    font-family: "urw-din-condensed", sans-serif;
    font-weight: normal;
    color: white;
    font-size: 26px;
    margin: 0;
}

h2 b {
    font-style: normal;
    font-weight: 600;
}

h3 {
    font-family: "Inconsolata SemiCondensed", "JetBrainsMono", monospace, sans-serif;
    font-size: inherit;
    font-weight: normal;
    margin: 8px 0px 5px 0px;
}

div.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

div.section {
    border: 1px solid #30363d;
    background-color: #161b22;
    padding: 20px;
    margin: 20px;
    border-radius: 6px;
}

div.section div.subsection {
    padding-left: 20px;
}

div.subsection-row {
    align-items: center;
    display: flex;
    justify-content: center;
}

div.subsection-row:nth-child(even) {
    background-color: #27303d;
}

div.subsection-row div.leader {
    border-bottom: 1px dotted rgb(120,120,120);
    flex: 1;
    min-width: 50px;
    min-height: 8px;
    margin: 0px 5px;
}

aiv.subsection table {
    border-collapse: collapse;
    border: 0px solid black;
    width: 100%;
}

div.subsection table tr:nth-child(even) {
    background-color: rgb(0,0,120);
}

