.site-container, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: black;
    font-family: monospace;
    margin: 0;
    /* padding: 0 20px 20px; */
}
.colorA { color: #39b5fb; }
.colorB { color: #a6a6a6; }

pre {
    white-space: pre;
    line-height: 1.15;
    margin: 0;
}
.tagline {
    margin: 10px 0 20px 0;
}

h1 {
    color: #39b5fb;
    margin: 20px 0 10px 0;
    font-size: 1.5em;
}

h2 {
    color: #a6a6a6;
    margin: 15px 0 5px 0;
    font-size: 1.2em;
}

p {
    margin: 5px 0;
    line-height: 1.4;
}

/* Tableau stylisé minimaliste */
table.services {
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95em;
}
table.services th,
table.services td {
    padding: 6px 12px;
    text-align: left;
    border-bottom: 1px solid #39b5fb33;
}
table.services th {
    color: #39b5fb;
    font-weight: normal;
    border-bottom: 2px solid #39b5fb;
}
table.services tr:hover {
    background-color: #111;
}
table.services a {
    color: #39b5fb;
    text-decoration: none;
}
table.services a:hover {
    text-decoration: underline;
}

.site-footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #39b5fb33;
    font-size: 0.95em;
}
.footer-links {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.footer-links li {
    display: inline;
}
.footer-links a {
    color: #39b5fb;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}