/* import from google fonts */
.dotgothic16-regular {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: none;
  font-smooth: never;
}


body {
    color: #fff;
    background-color: #000;
    font-family: 'Courier New', Courier, monospace;
}

/* header: that thing on top of every page */
.header {
    border-style: none;
    border-radius: .5vw;

    width: 100vw;
    height: auto;
    margin: auto;

    overflow: visible;
}

#banner  {
    display: flex;
    justify-content: space-between;
    vertical-align: top;
    margin: auto;
    margin-top: 0;
    margin-bottom: -1vw;
    width: 60vw;
    height: 7vw;

    overflow: hidden;

    pointer-events: none;
    user-select: none;
}

#navbar {
    background-color: #000;
    
    margin: auto;
    display: flex;
    width: 60vw;
    
    padding-top: 1vw;

}

#navbar > button {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1vw;
    color: #fff;
    background-color: transparent;

    border-style: none;
    border-color: #000;
    border-width: 1px;
    
    text-shadow: 0px 0px 0px #fff;
    transform: scale();
    
    width: 100vw;

    transition-duration: .25s;
}

#navbar > button:hover {
    text-shadow: 0px 0px 20px #fff;
    transform: scale(1.2);
}

#navbar > button:hover::before {
      content: "["
}

#navbar > button:hover::after {
      content: "]"
}

#content {
    background-color: transparent;
    color: #fff;

    margin: auto;
    padding-left: 13.5vw;
    padding-top: .5vw;
    width: 60vw;

    font-size: 1vw;
}

#content > h1 {
    font-size: 1vw;
}

#content > h1::after {
    font-size: 1vw;
    content: "~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^";
}

#content > footer {
    color: #696969;
    font-size: .8vw;
}