
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  color: #0DD99F;
  position: relative;
}


body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,255,0,0.05) 2px,
      rgba(0,0,0,0.25) 8px,
      rgba(0,0,0,0) 6px
    ),
    radial-gradient(circle at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1000;
}

@keyframes scanBeam { 0% { top: -100px; } 100% { top: 100%; } }

/* The Moving Scan-Beam */
body::before {
    content: " ";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: scanBeam 8s linear infinite;
    pointer-events: none;
    z-index: 101;
}



.container {
  width: 1920px;
  height: 1080px;
  position: relative;
  transform-origin: top left;
}


.title {
  position: absolute;
  left: 95px;
  top: 22px;
  font-size: 30px;
  white-space: pre;
  text-shadow:1px 1px 50px #0DD99F
}


.spider {
  position: absolute;
  left: 800px;
  top: -140px;
  font-size: 48px;
  white-space: pre;
  text-shadow:1px 1px 50px #0DD99F
}


.button {
  position: absolute;
  width: 540px;
  height: 105px;
  background:#03412f36;
;
  border: 3px solid #0DD99F;
  box-shadow: 
  0 0 60px #0dd99f34;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 64px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
  text-shadow:1px 1px 60px #0dd99fbb
}
.button:hover {
  background: #03412f;
  color: #fff;
}


#tiktok { top: 300px; left: 103px; }
#tumblr { top: 416px; left: 103px; }
#artfight { top: 532px; left: 103px; }
#instagram { top: 648px; left: 103px; }


.footer {
  position: absolute;
  left: 0px;
  top: 860px;
  font-size: 40px;
  white-space: pre;
  text-shadow:1px 1px 50px #0DD99F
}





