  body {
  background-color: #1e232d;
  color: #fff
}


/* glowing link */
a {
      position: relative;
      text-decoration: underline;
    }

a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Customize the glow color and size */
    }

a:hover::before {
      opacity: 1;
    }

/* unvisited link */
a:link {
  color: gold;
}

/* visited link */
a:visited {
  color: gold;
}

/* mouse over link */
a:hover {
  color: gold;
}

/* selected link */
a:active {
  color: gold;
}

h1 {
    text-shadow: 0 0 5px white;
    font-size:500%;
    text-align: center;
}

h2 {
    text-indent: 50px;
    font-size:300%;
}

h3 {
    text-align: center;
    font-size:200%;
}

h4 {
    text-align: center;
    font-size:150%; 
}

th {
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.6);
  vertical-align: top;
  text-align: center;
  box-shadow: 0 0 5px white;
}

table {
  border-spacing: 20px;
}

th, td {
    vertical-align: top;
    text-align: center;
    padding: 5px;
}


.footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
}