* h5,
* p {
    margin: 0;
    color: #fff;
}

.not-found {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
    width: 100vw;
    background: #73B3DE;
    overflow: hidden;
}

.not-found__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    height: 100%;
    width: 100%;
    max-width: 1440px;
}

.not-found__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    height: 100%;
    width: 100%;
    max-width: 1440px;
}

.not-found__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 496px;
    gap: 20px;
}

.not-found__app {
    display: flex;
    align-items: center;
    gap: 10px;
}

.not-found__applogo {
    height: 250px;
    width: 250px;
}

.not-found__appname {
    color: #fff;
    font-family: Signika, serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.not-found__errors {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.not-found__code {
    color: #fff;
    font-family: Open Sans;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.not-found__message {
    color: #fff;
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.not-found__divider {
    width: 83px;
    height: 8px;

    border-radius: 10px;
    background: var(--Gold-Solid, #eac267);
}

.not-found__image {
    display: none;
    position: absolute;
    top: 50%;
    right: -81px;
    transform: translateY(-50%);
    height: 520px;
    width: 726px;
}

.apps__image {
    padding-right: 2px;
}

.apps {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 16px;
}

.apps_text {
    color: #fff;
    font-family: Signika;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 20px;
}

.text-content {
    color: white;
    font-size: 16px;
    font-weight: 600
}

.content-img {
    width: 200px;
}

@media (min-width: 1024px) {
    .text-content{
        font-size: 24px;
    }

    .content-img {
        width: 229px;
    }
}

@media (min-width: 1142px) {
    .not-found__container {
        padding: 120px;
        justify-content: start;
    }

    .not-found__wrapper,
    .not-found__errors {
        align-items: flex-start;
    }

    .not-found__image {
        display: block;
    }

    .not-found__message {
        text-align: start;
    }
}