.marquee-container {
    /* Set size and hide overflow */
    width: 100%;
    overflow: hidden; 
    white-space: nowrap; /* Keep text on one line */
    box-sizing: border-box;
    border: 1px solid rgb(255, 255, 255);
    padding: 10px 0;
    background-image: linear-gradient(to bottom, rgb(72, 146, 121) , rgb(19,24,24), rgb(19,24,24), rgb(19,24,24), rgb(72, 141, 118));
}

.moving-text {
    /* Apply the animation */
    display: inline-block;
    padding-left: 100%; /* Start text completely off-screen to the right */
    animation: marquee 15s linear infinite; /* 15s duration, linear speed, repeat forever */
    font-family: "OCR A";
    color: aquamarine;
}

/* Define the animation movement */
@keyframes marquee {
    0% {
        transform: translateX(0); /* Start at the initial position (off-screen right) */
    }
    100% {
        transform: translateX(-100%); /* Move left until completely off-screen left */
    }
}

body{
    background-image: url(images/galaxy.gif);
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

p{
    color: aquamarine;
    font-family: Arial;
    font-weight: normal;
}

/* unvisited link */
a:link {
  color: aquamarine;
}

/* visited link */
a:visited {
  color: aquamarine;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: aquamarine;
}

table {
  width: 100%; /* Make the table use 100% of the body's 50% width */
  margin: 20px auto;
  border-collapse: separate; /* Allows space between borders, making the outer border clearer */
  border: 3px solid aquamarine; /* This explicitly puts a border around the entire table element */
  border-spacing: 0; /* Removes extra space between cells for a clean look */
}

th, td {
  /* Keep the cell borders as well */
  border: 1px solid aquamarine; /* Changed to 1px so the 3px outer border stands out more */
  padding: 10px;
  text-align: left;
  background-color: transparent;
  font-family: "OCR A", Monospace; /* Added this from your original snippet */
}

th {
  background-color: rgba(127, 255, 212, 0.1);
}








