@font-face {
  font-family: "pixel";
  src: url("./basis33.ttf") format("opentype");
}
:root {
  --front: #5884FD;
  --focus: #de7709;
  --back: black;
}

* {
  transition: color 0.25s, background 0.25s;
  /* line-height: 0.975; */
}

*::-webkit-scrollbar {
  width: 5px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--front) var(--back);
  font-weight: 300 !important;
}

*::-webkit-scrollbar-track {
  background: var(--back);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--front);
  border-radius: 6px;
  border: 3px solid var(--back);
}

* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  /* Code for Firefox */
  color: var(--back);
  background: var(--front);
}

::selection {
  color: var(--back);
  background: var(--front);
}

body {
  background: black;
  color: var(--front);
  font-family: "pixel", sans-serif;
  font-size: 16pt;
  line-height: 16pt;
}

canvas {
  image-rendering: pixelated;
  display: block;
  margin: 30px auto;
  max-width: 100%;
}

#logo {
  height: 330px;
}

#content {
  display: none;
  margin-bottom: 50px;
}

.console {
  display: none;
}

.container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.line {
  padding-left: 20px;
  position: relative;
  min-height: 20px;
}
.line:before {
  content: ">";
  position: absolute;
  left: 0;
  display: inline-block;
  color: white;
}
.line.active:after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 12px;
  background-color: white;
  transform: translateY(1px);
}
.line.big {
  margin: 20px 0;
}
.line b {
  color: var(--focus);
}
.line b.highlight {
  background-color: #00008C;
}
.line a {
  color: var(--focus);
}
.line a:hover {
  color: white;
}

#socials {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: 36px;
  border-top: 1px solid #666;
  background-color: black;
  z-index: 200;
  box-shadow: -1px -11px 5px 7px black;
}
#socials .links {
  position: relative;
  z-index: 10;
  padding-top: 8px;
  color: #666;
}
#socials a {
  display: inline-block;
  color: #666;
  text-decoration: none;
  line-height: 20px;
  font-size: 18px;
}
#socials a:hover {
  color: white;
}
#socials .magic {
  background-color: black;
  position: absolute;
  font-size: 14px;
  line-height: 14px;
  left: 50%;
  margin-top: -8px;
  padding: 0 10px;
  color: #444444;
  transform: translateX(-50%);
}

.cols {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
}
.cols .cola {
  width: 100px;
}
.cols .colb {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.cols #bow {
  height: 0;
  background-image: url("../assets/The-First-Great-Magic.png");
  background-size: 92px 200px;
  background-repeat: no-repeat;
  transition: height 0.5s linear;
}

footer {
  display: block;
  margin-top: 80px;
}

@media only screen and (min-height: 600px) {
  #socials {
    height: 40px;
  }
  #socials a {
    line-height: 24px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    width: 90%;
  }
}

/*# sourceMappingURL=main.css.map */
