:root {
    --background-color: #ddecf1;
    --page-color: #ffffff;
    --primary-color: #288fb8;
    --secondary-color: #061b3a;
    --primary-text-color: #ffffff;
    --secondary-text-color: #ddecf1;
    --discreet-color: #97a1a5;
}

body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-color);
    margin: 8px;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
    background: var(--page-color);
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5em;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    user-select: none;
}

header img {
    height: 4em;
}

header h1 {
    margin-left: 1em;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to bottom, var(--primary-text-color), var(--secondary-text-color));
}

.content {
    padding: 10px;
}

.links {
    margin: 1.5em auto;
    display: flex;
    flex-direction: column;
    max-width: 20em;
}

.links a {
    margin: 5px 0;
    padding: 10px;
    background: var(--primary-color);
    color: var(--primary-text-color);
    font-size: 1.1em;
}

.links a:hover {
    filter: brightness(1.05);
}

a {
    text-decoration: none;
    color: var(--primary-color)
}

a:hover {
    filter: brightness(1.20);
}

a:active {
    filter: brightness(0.85);
}

p {
    font-size: 1.2em;
}

footer {
    text-align: center;
    font-size: 1.1em;
    margin-top: 1.5em;
    padding-bottom: 0.2em;
}

footer span {
    color: var(--discreet-color);
    padding: 5ch 0 5ch 0;
}