body {
  /* bckground*/
  margin: 0;
  padding: 0;
  background-image: url('https://64.media.tumblr.com/58df25a04e1bb3f43a65427ea236478b/ea4f42bf8ae5a9bc-cc/s2048x3072/9dd891b1ba2bcbe04d5b41ec73ca2bd7161c8c56.gifv');
  background-size: cover;
  background-repeat: repeat;

 /* Font settings */
  font-family: 'VT323', monospace; /* Apply VT323 font */
  color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Press Start 2P', cursive;
  color: #ffffff;
}

p {
  font-family: 'VT323', monospace;
  color: #D10000;
}


 /* makes the container, contain itself and not extend to the sites */
.container {
  width: 600px;
  margin: auto;
  border: 3px solid #ff2a2a;
  background: #120000;
  position: relative;
  box-shadow:
    0 0 15px #ff2a2a,
    inset 0 0 20px #550000;
}

/* scanlines (dont move */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 0, 0, 0.06),
    rgba(255, 0, 0, 0.06) 1px,
    transparent 1px,
    transparent 3px
  );

}
.header,
.main,
.footer {
  position: relative;
  z-index: 5;
}

/* header, first box */
.header {
  border-bottom: 2px solid #ff2a2a;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 1px;
  
}

/* main content, paddings: similar to margins*/
.main {
  padding: 20px;
}
/*without separating the box from the header it can look very weird. text shadow my fav shit rn*/
.main h1 {
  margin: 0 0 15px 0;
  font-size: 28px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #ff2a2a;
}

/* inner boxes */
.box {
  border: 2px solid #ff2a2a;
  padding: 10px;
  margin-bottom: 15px;
  background: rgba(255, 0, 0, 0.05);
  line-height: 1.4;
  box-shadow: inset 0 0 10px #550000;
}

/* Footer */
.footer {
  border-top: 2px solid #ff2a2a;
  padding: 6px 12px;
  font-size: 12px;
  text-align: right;
