.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 90px);
    padding-top: 110px;
    padding-bottom: 210px;
}
.error-page h1 {
    color: #F4F4F8;
    text-align: center;
    font-size: 120px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    text-shadow: 0px 0px 1px var(--color),
        0px 0px 2px var(--color);
    margin-bottom: 20px;
}
.error-page h2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    padding-top: 0;
    margin-bottom: 10px;
}
.error-page h2::before {
    position: static;
    line-height: 20px;
}
.error-page p {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    padding-bottom: 40px;
}
.error-page .btn {
    padding: 20px 40px;
    border-radius: 40px;
}
@media screen and (max-width:768px) {
    .error-page {
        padding-top: 70px;
        padding-bottom: 280px;
    }
    .error-page h1 {
        font-size: 100px;
    }
    .error-page h2 {
        max-width: 194px;
        font-size: 24px;
    }
    .error-page p {
        font-size: 16px;
        max-width: 320px;
    }
}