.not-found-container {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;

    p,
    h3 {
        margin: 0;
    }

    p {
        font-family: Inter;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
    }

    h3 {
        font-family: Poppins;
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        text-align: center;
    }

    button {
        cursor: pointer;
        height: 48px;
        width: 174px;
        background-color: #1F6C7A;
        border-radius: 16px;
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
        color: #F9FAFA;

        @media (min-width: 770px) {
            height: 40px;
            width: 200px;
        }
    }
}