@import url(https://fonts.googleapis.com/css?family=Nunito:400,700);
:root {
    font-size: 100% !important;
    --font-primary: Nunito, Arial, sans-serif;
    /*--font-color-header: whitesmoke;*/
    --font-color-header: rgba(245, 245, 245, 0.9);
    /*--font-color-para: #212178;*/
    --font-color-para: rgb(33, 33, 120);
    --background-header: var(--font-color-para);
    --background-para: var(--font-color-header);
    --line-height: 1.3em;
}

body, html {
    height: 100%;
    display: grid;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    word-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    background-color: whitesmoke;
    background: url(city116109.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-attachment: fixed;
}

main {
    margin: auto;
    max-width: 24em;
}

article {
    margin: 1em;  
    padding: 0;
}

header, section {
    margin: 0;
    padding: .2em 1.2em;
    line-height: var(--line-height);
}

header {
    color: var(--font-color-header);
    background: var(--background-header);
    border-radius: 9px 9px 0 0;
}

section {
    color: var(--font-color-para);
    background: var(--background-para);
    border-radius: 0 0 9px 9px;
}

/*
dt::after {
content: ": ";
}
 */

dt {
    padding: .6em 0 .2em;
    font-weight: bold;
}

dt:first-of-type { padding-top: 0; }

@media (max-width: 420px) {
    body {
    }

    main {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        /*
        background: url(city116109.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: bottom;
        */
    }
    article {
        margin: 0;
    }

    header, section {
        border-radius: 0;
    }
    section {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

