/* style.css */
body {
  background-image: url("eve-space-3440x1440.jpg"); /* Sets the image */
  background-color: #000000; /* Fallback color in case the image can't load */
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  min-height: 1080px;
  color: white;
}

.blink-caret::after {
  content: "█";
  color: currentColor;
  margin-left: 0.08em;
  animation: caret-blink 1s steps(1) infinite;
  pointer-events: none;
}
@keyframes caret-blink {
  0%,49% { opacity: 1; }
  50%,100% { opacity: 0; }
}

.p1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}
