﻿:root {
    --app-height: 100%;
    --app-width: 100%;
}

body {
    margin: auto;
    font-family: 'Source Sans Pro';
    font-weight: 400;
    height: var(--app-height);
    max-width: var(--app-width);
    display: flex;
    flex-direction: column;
    color: #4b4b4b;
}

.error-wrapper {
    display: flex;
    flex-direction: column;
}

.error-logo {
    margin-top: 181px;
    height: 161px;
}

.error-heading {
    margin: 24px 12px 0px 12px;
    font-size: 16px;
    text-align: center;
    color: #808080;
}

.error-details {
    margin: 4px 12px 30px 12px;
    text-align: center;
    font-size: 14px;
}

@media (min-width: 600px) and (min-height: 600px) {
    .error-heading {
       font-size: 20px;
    }

    .error-details {
        font-size: 16px;
    }
}
