@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=Press+Start+2P&display=swap');

body {
  background: url('bgtest.gif') repeat;
  animation: slideDown 10s linear infinite;   
  color: #ff0000;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes slideDown {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 1000px; 
  }
}

.container {
  border: 1px solid #ff0000;
  padding: 2rem;
  margin-top: 2rem;
  background: rgb(0, 0, 0);
  position: relative;
  box-shadow: 0 0 10px rgba(255, 30, 30, 0.2);
  animation: container-glow 2s ease-in-out infinite;
  text-align: center;
}

@keyframes container-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 30, 30, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 30, 30, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 30, 30, 0.2);
  }
}

.ascii-art {
  font-family: 'Courier New', monospace;
  white-space: pre;
  color: #ff0000;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  font-weight: normal;
  color: #ff0000;
  text-shadow: 0 0 4px rgba(255, 0, 0, 0.4), 0 0 8px rgba(255, 0, 0, 0.2);
  padding-right: 100%;
  box-sizing: content-box;
  letter-spacing: 1px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(calc(-100% - 4em));
  }
}

.marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 2.5em;
  background: transparent;
}

.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
}

h1 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 90%;
}
p1 {
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 90%;
  color: #ff0000;
}