:root {
    --black: #000000;
    --white: #ffffff;
    --brand-primary: #19174c;
    --brand-secondary: #e43d30;
    --brand-tertiary: #317764;
    --font-family-sans: sweet-sans-pro, sans-serif;
    --font-weight: 400;
    --font-style: normal;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 40px;
    font-family: var(--font-family-sans);
    background-color: var(--brand-primary);
    color: var(--white);
}

h1,
p {
    margin: 0 0 1em 0;
}

h1.enormous {
    font-size: 4rem;
}

.container {
    display: grid;
    max-width: 940px;
    margin: 0 20px;
    grid-gap: 10px;
}

// no grid support

.container {
    display: flex;
    flex-wrap: wrap;
}

.container {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    justify-items: center;
    align-items: center;
}

.header,
.footer {
    margin-left: 5px;
    margin-right: 5px;
    flex: 0 1 100%;
    grid-column: 1 / -1;
}

.header img {
    width: 300px !important;
    height: auto;
}

container > * {
    padding: 20px;
    margin-bottom: 10px;
}

@supports (display: grid) {
    .container > * {
        margin: 0;
    }
}

.copy {
    grid-column: 1 / -1;
    margin-top: .5em;
    text-align: center;
}

.copy a {
    color: var(--brand-secondary);
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to bottom, var(--brand-secondary) 0%, var(--brand-secondary) 100%);
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 2px 2px;
    transition: background-size .3s;
}

.copy a:hover,
.copy a:focus {
    background-size: 8px 120px;
    color: var(--white);
}

@media all and (min-width: 600px) {
    h1.enormous {
        font-size: 6rem;
    }
}