.errorPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 200px 0 100px;
    text-align: center;
}

.errCode {
    background: -moz-linear-gradient(180deg, rgba(233, 121, 121, 0.65) 0%, rgba(7, 55, 135, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(233, 121, 121, 0.65) 0%, rgba(7, 55, 135, 0) 100%);
    background: linear-gradient(180deg, rgba(233, 121, 121, 0.65) 0%, rgba(7, 55, 135, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 400px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.errorPage h1 {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: -50px;
}

.errorPage p {
    font-weight: 500;
    margin-bottom: 70px;
}

@media screen and (max-width: 680px) {
    .errorPage {
        margin: 100px 0 150px;
    }
    .errCode {
        font-size: 150px;
    }
    .errorPage h1 {
        font-size: 24px;
        margin-top: 0;
    }
    .errorPage p {
        margin-bottom: 40px;
    }
}




