body {
  background-color: white;
  font-family: Courier, monospace;
  color: white;
}

.center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
}

.contentbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.left {
  width: 150px;
}

.middle {
  width: 600px;
}

.right {
  width: 150px;
}

.footer {
  width: 600px;
}

.section {
  border-color: white;
  border-style: solid;
  border-radius: 2px;
  border-width: 1px;
  padding: 5px;
  background-color: black;
  background-clip: padding-box;
}

.header {
  border-color: white;
  border-style: solid;
  border-radius: 2px;
  border-width: 1px;
  background-clip: padding-box;
  background-color: black; 
  color: white; 
  font-family: Impact, fantasy; 
  font-size: 1vw;
}

.bg {
  z-index: -1;
  background-image: url(/images/bg.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.nav {
  border-color: black;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  width: 150px;
  background-color: white;
}