body {
    background-color: rgb(37, 29, 29);
    color: white;
    font-family: 'Press Start 2P', cursive, sans-serif;
    margin: 0;
    padding: 0;
}


.link-center {
    display: flex;
    justify-content: center;
    width: 100%;
}
.links {
    display: block;
    margin: 20px auto;
    padding: 8px 24px;
    background: linear-gradient(to bottom, #e9e9e9 0%, #bcd6ee 100%);
    border: 2px solid #145399;
    border-radius: 0;
    color: #145399;
    font-family: Tahoma, Verdana, Segoe, sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 1px 1px 3px #0002;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: center;
}
#container {
    margin: 10px;
}
.links:hover {
    background: linear-gradient(to bottom, #d0e4f7 0%, #a6c8e0 100%);
    color: #4b719c;
    border-color: #41638a;
}
body a {
    text-decoration: underline;
    color: inherit;
}
li {
    list-style-type: none;
    margin: 10px 0;
}
li:hover {
    background-color: #444;
}