#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}

#mainBalanceText {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    color: black;
    text-align: center;
}

#myBalanceText {
    font-size: 1rem;
    font-weight: normal;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    color: black;
    text-align: center;
}

#paymentMethods {
    width: 12rem;
    font-size: 1rem;
    font-weight: normal;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    color: black;
    text-align: center;
    padding: 1rem;
}

#payButton {
    cursor: pointer;
    user-select: none;
    display: grid;
    place-content: center;
    justify-content: center;
    border-radius: 3px;
    border: none;

    width: 10rem;
    height: 2rem;
    margin-top: 1rem;

    background-color: #F7F4F7;
    color: #5C2649;
    font-size: 18px;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-align: center;
    position: relative;
}

#payButton:hover {
    background-color: #F6E0F4;
    color: #8A005A;
    transition: 200ms;
}

#payInput {
    background-color: #F7F4F7;
    border: none;
    width: 10rem;
    height: 2rem;
    font-size: 1rem;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    font-weight: normal;
    border-radius: 3px;
    padding-left: 0.5rem;
}
