body {
    margin: 0 auto;
}

main {
    margin: 0 auto;
    width: 100%;
    max-width: 1024px;

    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
}

main > section {
    margin: .75em 0;
    max-width: 100%;
    height: 100%;
}

main > section:last-child {
    margin-bottom: 1.5em;
}

.logo {
    max-width: 80%;
    max-height: 96px;
}

.full-width {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

a:hover {
    color:#039BE5;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

.viewport {
    width: 100%;
    margin: 0 auto;
}

.responsive {
    background-position: center;
}

@media (min-width: 0) and (max-width: 480px) {

}

@media (min-width: 768px) {

    .logo {
        max-width: 80%;
        max-height: 140px;
    }
}

@media (min-width: 1024px) {

    .logo {
        max-width: 80%;
        max-height: 140px;
    }

    .flex-column {
    //flex: 1;
    }
}

@media (min-width: 1025px) {

    body {
        margin: 2em auto;
    }
}

[data-logo-position=left] {
    margin-left: 0;
    margin-right: auto;
}

[data-logo-position=center] {
    margin: 0 auto;
}

[data-logo-position=right] {
    margin-left: auto;
    margin-right: 0;
}

img {
    display: block;
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.hyphenize {
    /* text hyphenation for titles */
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}