html, body {
    width: 100%;
    height: 100%;
    font-size: 10px;
}
body {
    margin: 0;
    background-color: #003459;
}

.serif {
    font-family: freight-text-pro, serif;
}

.sans-serif {
    font-family: halyard-text, sans-serif;
}

.layout-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    height: 80px;
    padding: 1.5rem;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto; /* refers to the flex display of .layout-container */
}
.header__content__title {
    margin: 0;
    font-size: 2rem;
}
.header__content--logo-mark {
    margin-right: 1rem;
}
.header__content--logo-mark svg {
    width: 78px;
    height: 50px;
    max-height: 100%;
    fill: #0051ba;
}

.page-content {
    width: 100%;
    margin: auto;
    color: #ffffff;
    flex: 1 0 auto;
}
.page-content__header {
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    text-align: left;
}
.page-content__login {
    border-bottom: 1px solid #73cbf2;
}
.page-content__login,
.page-content__opsmaps {
    margin: 2rem 3rem;
    padding: 2rem 2rem 5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.page-content__button a {
    padding: 1.375rem 3.875rem 1.625rem;
    background-color: #0051ba;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}
.login__content__button a:hover {
    background-color: #2767ff;
}
.login__content__button a:link,
.login__content__button a:visited,
.login__content__button a:hover,
.login__content__button a:active {
    color: #ffffff;
}

.page-footer {
    width: 100%;
    margin-top: 1.5rem;
    padding: 3rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    box-sizing: border-box;
    text-align: center;
    flex: 0 1 auto;
}

.no-link {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

@media (min-width: 576px) {
    .page-content {
        width: 75%;
    }

    .header {
        height: 90px;
    }

    .header__content__title {
        font-size: 3rem;
    }

    .page-content__header {
        font-size: 2.25rem;
    }
        
    .page-content__button a {
        padding: 1.75rem 4.25rem 2rem;
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .page-content {
        width: 60%;
    }

    .header {
        height: 100px;
    }

    .header__content__title {
        font-size: 3.5rem;
    }

    .page-content__header {
        font-size: 2.5rem;
    }

    .page-content__button a {
        padding: 2rem 4.5rem 2.25rem;
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .page-content {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .page-content {
        width: 40%;
    }
}

@media (min-width: 1920px) {
    .page-content {
        width: 30%;
    }
}

@media (min-width: 2560px) {
    .page-content {
        width: 20%;
    }
}