body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.container > h1 {
    margin: 0;
}
div.version {
    width: 75%;
    text-align: left;
    background-color: bisque;
    border-radius: 15px;
    padding: 10px;
    margin: 5px;
}
.version > table {
    width: 100%;
    border-collapse: collapse;
}
.version > table > tbody > tr > td {
    width: 50%;
}
.version > table > tbody > tr > td > h2 {
    cursor:pointer;
}
.version > table > tbody > tr > td:first-child {
    text-align: left;
}
.version > table > tbody > tr > td:last-child {
    text-align: right;
}
.version a {
    text-decoration: none;
    color: black;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #333;
        color: #eee;
    }
    div.version {
        background-color: #555;
    }
    div.version a {
        color: #eee;
    }
}

