/**
 * Header
 */

header,
#header-bumper {
    height: 55px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #8d0254;
    box-shadow: 0 0 10px black;
    color: #ffffff;
    z-index: 100;
}

header a {
    color: inherit;
    text-decoration: none;
}

#header-content {
    position: relative;
    margin: 0 auto;
    padding-left: 1em;
}

#header-content h1 {
    margin-top: 8px;
    font-size: 22px;
    display: inline-block;
}

/**
 * Main
 */

@media screen and (width <= 1180px) {
    #header-content,
    main,
    #footer-content {
        width: 100%;
    }
}

@media screen and (width > 1180px) {
    #header-content,
    main,
    #footer-content {
        width: 1180px;
    }
}

main {
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    margin: 0 auto;
}

/**
 * Footer
 */

#footer-content,
#footer-bumper {
    height: 2em;
}

footer {
    z-index: 100;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #000000;
    background: linear-gradient(0, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

#footer-content {
    position: relative;
    margin: 0 auto;
    padding-top: 8px;
}

footer a {
    color: inherit;
}
