:root {
    --bg-darkest: #0a0a0a;
    --bg-card: #161616;
    --bg-link: #1f1f1f;
    --bg-hover: #2a2a2a;
    --border: #2a2a2a;
    --text-muted: #9ca3af;
    --text-light: #f5f5f5;
}

body {
    background-color: var(--bg-darkest);
}

#content-main {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    color: var(--text-light);
    font-size: 12em;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}