@font-face {
    font-family: "SimSun";

    font-weight: normal;

    src: url("simsun.ttf") format("ttf");;
}

body {
    padding: 10px;

    background-color: #000;
    color: #fff;

    font-family: "SimSun", "SimSun", "SimSun-ExtB", serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.vantajs-canvas {
    position: fixed;

    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;

    background-color: #000;

    filter: blur(50px);

    z-index: -1;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
    width: 100%;
}

.content {
    max-width: 80%;
    margin: auto;

    text-align: left;
}

a {
    color: #fff;
}

a:hover {
    color: #fff;
}

table, th, td {
    border: 1px solid #fff;
    border-collapse: collapse;
}