body {
    zoom: 2;
    padding: 20px 40px;
    font-family: 'JetBrains Mono', monospace;
    color: white;
    background: url('/media/img/space-bg.gif');
}

.layout {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 20px;   /* centered, with 20px space below each section */
    padding: 0 20px;       /* only left/right */
}

.sidebar {
    width: 200px;          /* fixed width for the sidebar */
    flex-shrink: 0;        /* stops it getting squished */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #a855f7;
    border-radius: 8px;
    padding: 15px;
}

.sidebar a {
    display: block;        /* each link on its own line */
    color: #d8b4fe;
    margin-bottom: 3pt;
}

.content {
    flex: 1;               /* takes up all remaining space */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #a855f7;
    border-radius: 8px;
    padding: 16px;
}

.content1 {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #a855f7;
    border-radius: 8px;
    padding: 10px;
}

header {
    text-align: center;
}

.banner-title {
    display: inline-block;
    text-align: center;
}

/* bottom button row */
.banner-links .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
}

.banner-links .buttons a {
    display: flex;         /* link shrink-wraps the image cleanly */
    line-height: 0;
}

.banner-links .buttons img {
    display: block;        /* kills baseline gap/offset */
    height: 31px;
    width: auto;
}

@media (min-height: 1440px) and (min-width: 2560px) {
    body {
        zoom: 1.333;
    }
}

