@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Fira Code', monospace;
  background-color: #0a0a0a;
  color: #ddd;
  overflow: hidden;
  position: relative;
  animation: flicker 1.2s infinite;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

h1, h2 {
  color: #fff;
}

a {
  color: #82d4f7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Logo background */
.overlay-logo {
  background: url('assets/1.png') center center no-repeat;
  background-size: contain;
  opacity: 0.03;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* VHS overlay */
.vhs-effect {
  background: url('assets/vhs-overlay.gif') repeat;
  opacity: 0.1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Flicker animation */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}
