/**
 * Color scheme: 
 * background:   #000000         foreground:  rgba(255,255,255,0.96)
 * hightlight-1: #52bddd (blue)  highlight-2: #f7f001 (yellow)
 * hightlight-3: #ea44c4 (pink)
 */

html, body {
    background: #000;
    margin: 0;
    font-family: monospace;
    color: rgba(255,255,255,0.96);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100%;
    font-size: 16px;
    line-height: 1.6;
}

header {
    margin: 32px 0;
    text-align: center;
}

header img#logo {
    max-width: 1080px;
    width: 80%
}

main {
    flex-grow: 1;
    margin: auto;
    max-width: 1080px;
    width: 70%;
    overflow: auto;
}

footer {
    margin: auto;
    margin-top: 32px;
    margin-bottom: 8px;
    max-width: 1080px;
    width: 70%;
}

em {
    color: #f7f001;
}

h1 {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 16px 0 8px 0;
    color: #ea44c4
}

a[href] {
    color: #52bddd;
    text-decoration: none;
}
a[href]:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    header {
        margin: 16px 0;
        max-width: 100vw;
        overflow: hidden;
    }
    header img#logo {
        max-width: none;
        width: 170%;
        margin-left: -35%;
    }
    main {
        width: 90%;
    }
    footer {
        text-align: center;
    }
}
