/* Basic styling */
body {
    background-color: #000;
    color: #2ecc71;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Centered container */
.bios-container {
    width: 600px;
    padding: 20px;
    border: 2px solid #2ecc71;
}

/* Header styling */
.header {
    text-align: center;
    border-bottom: 1px solid #2ecc71;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

/* Footer styling */
.footer {
    border-top: 1px solid #2ecc71;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 12px;
}

.info-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 20px;
    margin-bottom: 10px;
}

canvas#starfield {
    position: fixed;
}