body {
  background-image: url('checker bg.png');
  background-color: #000;
  color: #fff;
  font-family: "Comic Sans MS", sans-serif;
}

/* TEMPLATE */

.box {
  background-color: #000;
  border: 3px ridge #fff;
  box-shadow: 5px 5px #000;
  margin: 5px;
}

/* BASE */

.containerMAIN {
  flex-direction: column;
  margin: auto;
  display: flex;
  max-width: 1250px;
  height: 875px;
}

.containerABOUT {
  flex-direction: column;
  margin: auto;
  display: flex;
  max-width: 1250px;
  height: 925px;
}

.header {
  display:flex;
  align-items: flex-end;
  max-width: 100%;
}

.body {
  display:flex;
  max-width:100%;
  height:100%;
}

.left {
  width:20%;
}

.center {
  width:55%;
}

.right {
  width:25%;
}

.copy {
  display: flex;
  max-width: 100%;
}

/* HOME PAGE */

.updates {
  overflow: scroll;
  height: 300px;
  padding:0 10px 0 5px;
}

.marquee > img {
  margin-right:5px;
}

/* MISC */

a:link {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #fff;
  text-decoration: none;
}

a:visited {
  color: #fff;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 5px;
  height: 0;
}

::-webkit-scrollbar-track {
  border: none;
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: white;
}