body {
  margin: 0;
  padding: 0;
  background: url('images/bg.jpg') repeat;
  font-family: 'Courier New', monospace;
  color: #eee;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('images/noise.gif') repeat;
  opacity: 0.1;
  z-index: 999;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  top: 20px;
  left: 50px;
  transform: rotate(-5deg);
  z-index: 5;
}

marquee {
  margin-top: 100px;
  border-top: 2px dashed #aa0000;
  border-bottom: 2px dashed #aa0000;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.main-box {
  width: 500px;
  margin: 140px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 3px solid red;
  transform: rotate(0.7deg);
  z-index: 10;
}

h1.glitchy {
  font-size: 2em;
  color: lime;
  text-shadow: 2px 2px red, -2px -2px blue;
  animation: flicker 1s infinite alternate;
  text-align: center;
}

@keyframes flicker {
  0% { opacity: 0.8; }
  100% { opacity: 1; transform: skew(0.3deg); }
}

a {
  color: hotpink;
  text-decoration: none;
}

a:hover {
  color: yellow;
  background: black;
  padding: 2px 4px;
}

.tape {
  position: absolute;
  width: 120px;
  opacity: 0.8;
  z-index: 2;
}

.top-left {
  top: 10px;
  left: 10px;
  transform: rotate(-12deg);
}

.bottom-right {
  bottom: 20px;
  right: 20px;
  transform: rotate(17deg);
}

.random-img {
  position: absolute;
  z-index: 4;
  border: 1px solid #111;
  box-shadow: 2px 2px 4px #000;
  pointer-events: none;
}
.stitched-banner {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  border: 2px solid #fff;
  box-shadow: 3px 3px 6px #000;
}
.stitched-banner {
  display: block;
  width: 90%;
  max-width: 400px;
  height: auto;
  margin: 20px auto;
  border: 2px dashed red;
  box-shadow: 3px 3px 6px black;
  transform: rotate(-1.5deg);
}

