:root {
    --accent: #968ad5;
    --foreground: #fefefe;
    --background: #242424;
    --frost: #fefefe1a;
    --error: #cc0000;
    box-sizing: border-box;
}
body {
    font-family: Roboto;
    font-weight: 200;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    background-color: var(--background);
    background-image: url("/background.png");
    background-size: cover;
    background-attachment: fixed;
    color: var(--foreground);
    margin: 0;
    min-height: 100%;
}
html {
    min-height: 100%;
}
h2 {
    font-weight: lighter;
    letter-spacing: 0.2em;
    align-content: center;
}
a {
    color: inherit;
    text-decoration: inherit;
}
@media (max-width:700px) {
    body {
        font-size: 1.0em;
    }
    h1 {
        font-size: 1.2em;
    }
    .logo {
        padding: 0;
    }
    .text {
        width: 100%;
        padding: 0;
        margin: 0 0.3em 0 0.3em;
    }
}


