body {
    background-image: url(share-payout-bg.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--color-black-03);
    text-align: left;
}

p {
    font-weight: 700;
}

h1 {
    font-family: secondaryFont, "secondaryFont Fallback";
    font-size: 5rem;
    font-weight: 400;
    background: linear-gradient(180deg, #ffbf02, #ff7b02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    margin-bottom: 2rem;
}

.amount {
    font-family: secondaryFont, "secondaryFont Fallback";
    font-size: 5rem;
    font-weight: 400;
}

.profile-container {
    display: flex;
    ;
    margin-top: 1rem;
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-image img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 0.6rem;
}

.withdrawal-date {
    color: var(--color-dark-grey-70);
}

/* For screens >= 1024px, stretch layout */
@media (min-width: 64rem) {
    h1 {
        font-size: 3.5rem;
    }

    main {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}