@font-face {
    font-family: "Source Code Pro";
    src: url(/font/SourceCodePro-VariableFont_wght.ttf);
  }

html, body {
    height: 100%;
}

@keyframes moveBackground {
    from {background-position: top left;}
    to {background-position: bottom right;}
}

body {
    margin: 0;
    text-align: center;
    background: rgb(0,0,50);
    background-image: url('assets/stars.png'), linear-gradient(rgb(29, 0, 109),rgb(0, 0, 0));
    background-attachment: fixed;
    cursor: url("cursor.cur"), auto;
    color: white;
    list-style-position: inside;
    font-family: "Source Code Pro", "Courier New", "Courier", monospace;
    animation: moveBackground 10s linear infinite;
}

hr {
    border-color: #000066;
}

ul {
    list-style: none;
    padding-left: 0;
}

.center {
    margin-left: auto;
    margin-right: auto;
  }

th, td {
    padding-left: 25px;
    padding-right: 25px;
  }