@font-face {
    font-family: 'vcr';
    src: url('VCR_OSD_MONO.ttf');
}

body {
  background-image:url(images2/eye.gif);background-repeat: repeat;
  font-size: 16px;
  font-family: VCR;
  font-style:normal;
  image-rendering: pixalated;
  color: palevioletred;
}
p {
  color: palevioletred;
}
h1 {
  font-size: 32px;
  font-weight: 100;
  text-align: center
}
h2 {
  font-weight: 100;
  text-align: center
}
h3 {
  font-weight: 100;
  text-align: center
}
h4 {
  text-align: center
}
weak {
  font-weight: lighter;
}
.container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 5px;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.border {
  border-style: solid;
  border-color: #808080;
  border-width: thick;
  background-color: beige;
  margin: 2.5%;
  padding: 2.5%;
}
.secret {
  color: beige;
}
.fart {
  color: brown;
}
.titleborder {
  display: inline-block;
  border-style: solid;
  border-color: black;
  border-width: thick;
}
.smalltext {
  font-size: 15px;
}
.updatelog {
  font-size: 75%;
  text-align: center
}
.motd {
  font-size: 75%;
  text-align: center
}
.evil {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.evil2 {
  max-width:max-content;
  margin-left: auto;
  margin-right: auto;
}
.box1border {
  width: 500px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.box2border {
  width: 420px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.box3border {
  width: 420px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.box4border {
  width: 420px;
  border-style: solid;
  border-color: #323232;
  background-color: #323232;
}
.box5border {
  width: 400px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.box6border {
  width: 400px;
  border-style: solid;
  border-color: #323232;
  background-color: #161616
}
.box7border {
  width: 200px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.box8border {
  width: 100px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.boxsideborder {
  width: 210px;
  height: 600px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.sidecontainer {
  width: 210px;
  height: 600px;
}
.rightbar1 {
  width: 210px;
  height: 300px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.rightbar2 {
  width: 210px;
  height: 250px;
  border-style: solid;
  border-color: #323232;
  background-color: black;
}
.rightbargap {
  width: 210px;
  height: 44px;
}
.centertext {
  text-align: center;
}
.videolink {
  display:flex;
  justify-content: center;
  margin:auto;
}
.columns {
  column-count: 3;
}
.thenewthing {
  animation: tnt 3s linear infinite;
}
.defaultcolor {
  color: palevioletred;
}


@keyframes tnt {
  0% {
    opacity: 1;
    transform: scale(.5)
  }
  50% {
    opacity: 1;
    transform: scale(2)
  }
  100% {
    opacity: 1;
    transform: scale(.5)
  }
}
.blinker {
  animation: blinker 3s linear infinite;
}
@keyframes blinker {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.thenewthing2 {
  animation: tnt2 3s linear infinite;
}

@keyframes tnt2 {
  0% {
    opacity: 1;
    transform: scale(.25)
  }
  50% {
    opacity: 1;
    transform: scale(1)
  }
  100% {
    opacity: 1;
    transform: scale(.25)
  }
}