#header {
  height:100px;
  width:800px;
  border-radius: 0 100px 0 0;
  margin:auto;
}
#headimg {
    border-radius: 0px 100px 0px 0px;
    width:900px;
    height:100%;
    position:relative;
    right:52px;
    box-shadow: 10px 10px 10px black;
    margin-bottom:30px;
    }
#mainframe {
  display:flex;
  flex-direction:row;
  align-items:stretch;
  background-color:#28314F;
  width: 900px;
  height:700px;
  margin:auto;
}
.content {
  background-color:#395273;
  flex-grow:4;
  margin: 10px 10px 10px 10px;
  border-radius:30px;
  flex-direction:row;
}
  .crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.10626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.10626;
  }
  30% {
  opacity: 0.18128;
  }
  35% {
  opacity: 0.23604;
  }
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}
.main {
  display:flex;
  flex-direction:row;
}
.left {
  flex-grow:1;
  background-color:black;
  margin:10px
}
.right {
  flex-grow:1;
  background-color:black;
  margin:10px 
}
body {
  background: url(https://noiseordinance.neocities.org/graphics/backstar.png);
}
p,ul,li,a {
  font-size:16px;
  color:white;
}
a {
  transition: all 1s;
  transition-timing-function:ease;
}
a:hover {
  letter-spacing:10px;
}
.textbox {
  padding:10px;
  background-color:#4A6B96;
  box-shadow:5px 5px 5px 5px black;
  border-radius:15px;
  margin:5px;
}
.back-button {
  margin:10px;
  font-size:25px;
  text-decoration:none;
}
.cover {
  filter:sepia(100%) hue-rotate(170deg);
}
h1, h2 {
  margin:10px;
  color:white;
  filter:blur(2px);
}