.error-page-container {
    font-family: sans-serif;
    background: #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.error-page-heading {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #dcdcdc;
    font-weight: bold;
    font-size: 40px;
}

.error-page-content {
    border-left: 10px solid red;
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 2rem;
    margin: 1rem;
    border-radius: 6px;
    min-width: 75%;

    @media(min-width: 768px) {
        padding: 6rem 8rem;
        min-width: 600px;
    }
}

.error-page-footer {
    color: #a4a4a4
}

.error-page-body {
    margin-bottom: 1rem;
    line-height: 2rem;
}

.error-page-h2 {
    font-weight: 500;
    font-size: 24px;
    color: #5d5d5d;
    margin-bottom: 1rem;
}

.error-page-img {
    width: 75px;
    height: auto;
    margin-bottom: 2rem;

    @media(min-width: 768px) {
        width: 150px;

    }
}