body{
    margin: 0;
}

.errorPage .inner {
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    height: 100vh;
}

.errorPage .inner .icon img {
    width: 100%;
    max-width: 400px;
}

.errorPage .summary .title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.errorPage .summary p {
    margin: 2rem 0;
}

.errorPage .summary p span {
    color: #777;
    display: block;
}

.errorPage .summary .button {
    margin-top: 4rem;
    display: flex;
    gap: 1rem;
}

.errorPage .summary .button button {
    color: white;
    border-radius: .25rem;
    line-height: 3rem;
    flex: 1;
    max-width: 10rem;
    font-weight: 600;
    font-size: 1.25rem;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #4200FF;
}

.btn-primary:hover {
    background: #3300cb;
}

.btn-purple {
    background: #666871;
}

.btn-purple:hover {
    background: #4c4d52;
}

@media (max-width: 1200px) {
    .errorPage .inner {
        padding: 0 1.5rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .errorPage .inner .icon img {
        margin-left: 8%;
    }

    .errorPage .summary .title {
        font-size: 1.5rem;
    }

    .errorPage .summary .button {
        justify-content: center;
    }
}