
.row.justify-content-center.mt-5 {
    display: none;
}

footer.btcpay-footer {
    display: none;
}

/* Hide the original text */
h1.h2.mb-3 {
    visibility: hidden;
    position: relative;
}

/* Add new text using ::after */
h1.h2.mb-3::after {
    content: 'Welcome to your Bitcoin payment server';
    visibility: visible;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;  /* Ensure it spans the full width */
    text-align: center;  /* Center the text inside the pseudo-element */
}
