html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
}

body {
  font-family: 'Roboto Mono', monospace;
  color: #5de7b9;
  position: relative;
}

body::before {
  content: "";
  position: fixed; /* cover the whole window, not just body */
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    /* brighter horizontal scanlines */
    linear-gradient(rgba(255, 255, 255, 0.07) 50%, rgba(0, 0, 0, 0.35) 50%),
    /* stronger RGB color bleed */
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.15),
      rgba(0, 255, 0, 0.08),
      rgba(0, 0, 255, 0.15)
    );
  background-size: 100% 2px, 3px 100%;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

/* Subtle flicker animation */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 0.99;
  }
  20%, 24%, 55% {
    opacity: 0.93;
  }
}

h1 {
    text-align: center;
    font-size: 45px;
}

p {
    text-align: center;
    font-size: 30px;
}

#inj {
    flex: 0 0 300px; 
    width: 300px;
    background-color: rgb(59, 59, 59);
    border: 5px solid white;
    margin: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#download {
    width: 100px;
    height: 40px;
}


#inj img {
    width: 100%;
    height: 100%;
}

#inj p {
    color: white;
    text-decoration: none;
    margin: 5px;
}

#download {
    width: 100px;
    height: 40px;
    margin-bottom: 5px;
    align-self: center;
}

#inject-root {
  display: flex;
  flex-wrap: wrap;          /* allow multiple rows */
  justify-content: center;  /* center items nicely */
  align-items: flex-start;  /* align tops of each card */
  gap: 20px;                /* space between each */
  padding: 20px;
}
