#falloutbackground {
  position: relative;
  width: 640px;
  height: 480px;
  overflow: hidden;
  transform-origin: center center;
  transform: scale(1) translate(0,0);
  background-image: url('falloutbackground.png');
  background-size: cover;
}

.bomb {
  position: absolute;
  width: 65px;
  height: 65px;
  z-index: 1;
  pointer-events: none;
}

#nerdcontent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 540px;
  height: 380px;
  padding: 20px 60px 20px 20px;
  box-sizing: border-box;
  overflow: auto;
  transform: translate(-50%, -50%)
              perspective(800px) rotateX(3deg) rotateY(2deg);
  z-index: 2;
  font-family: 'Fallout';
  font-size: 0.625rem;
  color: #00cc00;
  text-align: justify;
  border: 2px outset grey;
  border-radius: 40px / 30px;
  background: repeating-linear-gradient(
                to bottom,
                rgba(200,200,200,0.8),
                rgba(200,200,200,0.8) 2px,
                transparent 2px,
                transparent 4px),
              linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
  background-blend-mode: multiply;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
  animation: scanline-move 1s linear infinite;
}

@keyframes scanline-move {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 4px, 0 0; }
}

#nerd-icons {
  position: absolute;
  top: 50%;
  left: 75%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.nerd-section {
  font-size: 0.625rem;
  display: none;
}

#nerdcontent a {
  font-weight: normal;
  color: #00ff00;
}

#nerdcontent a:hover {
  text-shadow: 0 0 0.15rem #99ff99;
}

#nerdcontent h1,
#nerdcontent h2 {
  font-weight: normal;
  font-size: 0.75rem;
  color: #00ff00;
}

#nerdcontent h3 {
  display: inline;
  font-size: 0.625rem;
}

audio::-webkit-media-controls-panel { background: rgba(20, 20, 20, 0.5); }
audio::-webkit-media-controls-enclosure { border-radius: 12px; background: transparent; }
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-volume-slider { filter: invert(1) contrast(2); }