.page-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-received__title {
    text-align: center;
    font-family: TDAText, sans-serif;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    background: linear-gradient(90deg, #F56B6B 0%, #F91C4E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.order-received__to-home {
    background: linear-gradient(90deg, #F56B6B 0%, #F91C4E 100%);
    padding: 8px 16px;
    display: flex;
    width: 184px;
    height: 26px;
    justify-content: center;
    align-items: center;
    color:  #EDEDD1;
    font-family: TDAText, sans-serif;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

.order-received__message {
    color:  #EDEDD1;
    text-align: center;
    font-family: TDAText, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

@media (width >= 768px) {
    .order-received__title {
        font-size: 52px;
    }

    .order-received__to-home {
        width: 238px;
        height: 34px;
        padding: 10px 21px;
        font-size: 21px;
    }

    .order-received__message {
        font-size: 48px;

    }
}