.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    height: calc(100vh - 495px);
    max-height: 100vh;
    justify-content: center;
}

.page-404 img {
    max-width: 491px;
    width: 100%;
    height: auto;
    margin-bottom: 46px;
}

.page-404 .header {
    margin-bottom: 16px;
    color: #175D54;
    font: 38px/44px Manrope-Bold;
}

.page-404 .description {
    margin-bottom: 46px;
    max-width: 486px;
}

.page-404 a:hover {
    color: white;
}

.page-404 a.default-button {
    padding: 10px 16px;
    background: #6900CF;
    font: 18px/24px Manrope-Bold;
    color: white;
    border-radius: 12px;
    border: unset;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-decoration: unset;
    display: inline-block;
}

@media (max-width: 1000px) {
    .page-404 {
        height: calc(100vh - 505px);
    }
}

@media (max-height: 950px) {
    .page-404 {
        height: auto;
        padding: 25px 0px;
    }
}

@media (max-width: 750px) {
    .page-404 {
        height: auto;
        padding: 65px 0px;
    }

    .page-404 img {
        max-width: 245px;
        margin-bottom: 32px;
    }

    .page-404 .header {
        margin-bottom: 8px;
        font: 24px/32px Manrope-Bold;
    }

    .page-404 .description {
        margin-bottom: 32px;
        margin-top: 0px;
        max-width: 289px;
    }

    .default-button {
        font: 14px/20px Manrope-Bold;
    }
}