:root {
    --color-blue: 61, 180, 242;
    --color-background: 11, 22, 34;
    --color-foreground: 21, 31, 46;
    --color-foreground-grey: 15, 22, 31;
    --color-foreground-grey-dark: 6, 12, 19;
    --color-foreground-blue: 15, 22, 31;
    --color-foreground-blue-dark: 6, 12, 19;
    --color-text: 159, 173, 189;
    --color-text-light: 114, 138, 161;
    --color-text-bright: 237, 241, 245;
}

html {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-text))
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.content {
    margin-left: 5px;
    margin-right: 5px;
}

@media screen and (min-width: 1200px) {
    .content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
        min-width: 1200px;
    }
}

.content-container {
    padding: 20px;
    border-radius: 4px;
    background: rgb(var(--color-foreground));
}

a, a:visited {
    color: rgb(var(--color-blue));
    text-decoration: none;
}

footer {
    min-height: 200px;
    background: rgb(var(--color-foreground-blue-dark));
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    margin-top: auto;
    padding-top: 30px;
}

footer section {
    display: flex;
    flex-direction: column;
}

footer section a,
footer section a:visited {
    padding: 8px 10px;
    color: rgb(var(--color-text));
    font-weight: 550;
}