body {
    display: flex;
    justify-content: center;
}

.error-root {
    display: flex;
    max-width: 700px;
    width: 100%;
    margin: 60px
}

.error-image {
    display: block;
}

.error-container {
    display: flex;
    flex-direction: column;
    padding: 75px 0 0 75px;
}

.error-title {
    color: #61a61c;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 38px;
    font-weight: 200;
    font-style: normal;
    line-height: 52px;
}

.error-message {
    color: #525252;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.4em;
}

.error-button {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
    width: fit-content;
    border-radius: 5px;
    background-color: #6db721;
    border: 1px solid #61a61c;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
    height: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.error-stack {
    position: absolute;
    bottom: 20px;
    background-color: white;
}

.error-button i {
    margin-right: 10px;
}

.error-button:hover {
    text-decoration: none;
    background-color: #ff931e;
    border: 1px solid #ff931e;
    cursor: pointer;
    transition: all .2s;
}

@media (max-width: 790px) {
    .error-root {
        margin: 40px
    }
    .error-image {
        display: none;
    }
    .error-container {
        padding: 75px 0;
    }
}

