:root {
    --navy:#091F2C;
    --orange:#B67233;
    --olive:#6A6851;
    --yellow:#EFD19F;
    --cream:#efeadc;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--navy);
    color: var(--navy);
    font-family: "modern_sanslight", sans-serif;
    height: 100%;
}

html {
    height: 100%;
}

div {
    display: block;
}

.logo-block-lg {
    background-color: var(--olive);
    color: var(--yellow);
    margin: 10%;
    overflow: visible;
    vertical-align: baseline;
    height: auto;
}

.logo img {
    max-width: 100%;
    height: auto;
    padding: 10%;
    display: block;
}

.message {
    text-align: center;
    padding-top: 10%
}

p {
    padding: 1% 4%;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.column {
    float: left;
    /*border: 1px solid red;*/
    width: 100%;
}

@media (min-width: 768px) {
    .column {
        width: 50%;
    }
    .message {
        padding-top: 40%
    }
}

@font-face {
    font-family: 'modern_sanslight';
    src: url('/assets/fonts/modernsans-light-webfont.woff2') format('woff2'),
    url('/assets/fonts/modernsans-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}