/* global variables */
:root {
  --kenston-color: #0093d0;
  --bg-color: #1c1c1c;
  --bl-color: #2a2a2a;
  --fg-color: #eee;
  --hotbar-color: #a9a9a9;
  --hyperlink-hover-color: #f33;
}

@font-face {
    font-family: 'Helvetica New';
    src: url('/fonts/HelveticaNew.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
  font-family: 'Helvetica New', Helvetica, sans-serif;
  color: var(--fg-color);
  background: var(--bg-color);
}

h1 {
  font-family: 'Helvetica New', Helvetica, sans-serif;
  font-size: 80px;
  margin: auto auto auto auto;
}

.hotbar {
  color: var(--hotbar-color);
  font-family: 'Helvetica New', Helvetica, sans-serif;
  text-decoration: none;
  font-size: 18px;
  padding: 5px;

  display: flex;
  justify-content: center;
}

.hotbar span {
  margin-left: 2px;
  margin-right: 2px;
}

.textblock {
  display: block;
  text-align: justify;
  max-width: 100ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  background-color: var(--bl-color);
  padding: 2rem;
  border-radius: 8px;
}

a:hover, a:visited, a:link, a:active
{
  font-family: 'Helvetica New', Helvetica, sans-serif;
  color: var(--hotbar-color);
  text-decoration: none;
  font-weight: bold;
}

a:hover, a:link:hover, a:visited:hover 
{
  font-family: 'Helvetica New', Helvetica, sans-serif;
  color: var(--hyperlink-hover-color);
  font-weight: bold;
}

span.kc {
  color: var(--kenston-color);
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
}

header {
  text-align: center;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: left;
  padding: 8px;
  background-color: var(--bg-color);

  font-size: 1rem;
}

p {
  text-indent: 0.5i;
  line-height: 32px;
  margin-bottom: 1.5i;
}

p.no-indent {
  text-indent: 0;
}

!important .left-quad p {
  text-align: left;
}
