/* Basic dark theme like the screenshot */
body {
    background-color: #1b1b2f;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #ff007f;
}

section {
    padding: 20px;
    margin: 10px;
    border-bottom: 1px solid #444;
}

a {
    color: #ff007f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}