        @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');
table.steelBlueCols {
  border: 4px solid #555555;
  background-color: #555555;
  width: 400px;
  text-align: center;
  border-collapse: collapse;
}
table.steelBlueCols td, table.steelBlueCols th {
  border: 1px solid #555555;
  padding: 5px 10px;
}
table.steelBlueCols tbody td {
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
}
table.steelBlueCols td:nth-child(even) {
  background: #398AA4;
}
table.steelBlueCols thead {
  background: #398AA4;
  border-bottom: 10px solid #398AA4;
}
table.steelBlueCols thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: left;
  border-left: 2px solid #398AA4;
}
table.steelBlueCols thead th:first-child {
  border-left: none;
}

table.steelBlueCols tfoot td {
  font-size: 30px;
}
table.steelBlueCols tfoot .links {
  text-align: right;
}
/* unvisited link */
.gamelink:link {
  color: white;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* visited link */
.gamelink:visited {
  color: white;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* mouse over link */
.gamelink:hover {
  color: grey;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* selected link */
.gamelink:active {
  color: blue;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}
/* unvisited link */
a:link {
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* visited link */
a:visited {
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* mouse over link */
a:hover {
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

/* selected link */
a:active {
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}
p{
    font-family: 'Oswald', sans-serif;
}
/* CHANGE THE COLOR SEQUENCE HERE */
@keyframes rainbow {
  0% { color: #fc0303 }
  17% { color: #45f52a }
  34% { color: #2a7bf5 }
  51% { color: #2af5e4 }
  68% { color: #c92af5 }
  85% { color: #f5dd2a }
  100% { color: #66655d }
}
 
/* CHANGE THE ANIMATION SPEED HERE */
.maintitle {
  animation-name: rainbow;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}