body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

a:link {
    color: rgb(255, 255, 255);
  }
  
  /* visited link */
  a:visited {
    color: rgb(255, 255, 255);
  }

.centered-content {
    text-align: center;
    position: absolute;
    z-index: 1;
}

#starfield {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 5px #fff, 0 0 10px #fff;
    animation: fly 5s linear infinite;
}

@keyframes fly {
    0% {
        transform: translateX(0px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-500px); // Adjust for speed and direction
        opacity: 0;
    }
}


.sampleMarquee {
    color: #10ff00;
/*    background-color: #000000;*/
    font-size: 34px;
    line-height: 70px;
    padding: 15px;
    font-style: italic;
}

