html, body {
    margin: 0;
    padding: 0;
}
a {
    color: rgb(220,220,220);
    text-decoration: none;
    border-bottom: 1px dotted rgb(220,220,220);
}
.players {
    width: 300px;
    margin: auto;
    padding: 12px;
    border-radius: 5px;
    font-size: 1.3em;
}
.page {
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: rgb(30,30,30);
    background-image: url('cave.png');
    background-size: unset;
    background-attachment: fixed;
    color: rgb(220,220,220);
    font-family: 'VT323', monospace;
}
.links {
    display: block;
    position: absolute;
    left: 30px;
    top: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
}
.links img {
    width: 82px;
    display: block;
    margin-bottom: 6px;
    filter: saturate(80%);
}
.links a:hover {
    filter: saturate(140%);
}
.links a {
    display: block;
    margin-bottom: 30px;
}
.content {
    width: 50vw;
    min-width: 300px;
    margin: auto;
    padding: 12px;
    padding-bottom: 24px;
    border-radius: 5px;
    font-size: 1.3em;
    background-color: rgba(30,30,30,0.9);
}
table caption {
    margin-bottom: 1em;
    background-color: rgba(30,30,30,0.6);
    border: 1px solid rgba(20,20,20, 0.6);
    border-radius: 5px;
    padding: 6px;
}
table {
    background-color: rgba(30,30,30,0.6);
    border: 1px solid rgba(20,20,20, 0.6);
}
tr {
    font-weight: 600;
}
tr:nth-child(even) {
    background: rgba(30,30,30,0.6)}
tr:nth-child(odd) {
    background: rgba(20,20,20,0.6)}
.player-head {
    width: 32px;
    margin-top: 4px;
    margin-left: 4px;
    padding: 0;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 50vw;
    left: 25vw;
    background-color: rgba(30,30,30,0.6);
    padding: 6px;
    text-align: center;
    font-size: 0.8em;
}
h1 {
    text-align: center;
    font-size: 2em;
    margin-top: 0;
}