/* Base style */

body {
    background-color: #fafafa;
    font-size: 16px;
    font-weight: 300;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    color: #104175;
    font-size: 1.4em;
    margin-bottom: 20px;
}

p {
    color: #aaa;
    line-height: 1.8em;
    margin-bottom: 20px;
}

/* Bootstrap overrides */

.btn {
    font-weight: bold;
    padding: 10px 40px;
}

.btn-primary {
    background-color: #104175;
}

/* Error pages base style */

.error-content {
    height: 80vh;
    padding-top: 30vh;
}

    .error-content img {
        max-height: 200px;
    }

.error-footer {
    height: 20vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

    .error-footer img {
        max-width: 144px;
        max-height: 30px;
    }

/* Media queries */

@media (max-width: 991px) {
    .error-content {
        padding-top: 20vh;
        text-align: center;
    }

        .error-content img {
            max-height: 120px;
            margin-bottom: 60px;
        }
}

@media screen and (max-width: 800px) {
    .error-content {
        padding-top: 20vh;
        text-align: center;
    }

        .error-content img {
            max-height: 120px;
            margin-bottom: 0px !important;
        }

    .error-footer img {
        display: none;
    }
}
