body {
    margin: 0;
    font-family: monospace;
    background-color: #0e0e0e;
    color: #e0e0e0;
}

header {
    padding: 20px;
    border-bottom: 1px solid #400;
}

h1 {
    color: #c00000;
}

main {
    padding: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #400;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
}

nav a:hover {
    color: #c00000;
}
nav a.active {
    color: #c00000;
    border-bottom: 2px solid #c00000;
    padding-bottom: 4px;
}
.status.online {
    color: #00c000;
    font-weight: bold;
}

.status.offline {
    color: #c00000;
    font-weight: bold;
}
footer {
    margin-top: 40px;
    padding: 10px 20px;
    border-top: 1px solid #400;
    color: #888;
    font-size: 12px;
    text-align: center;
}
