<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Newsletter Banner */
.newsletter-banner {
  background-image: url("../images/banneroni/chiesa.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

    padding: 150px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
@supports (-webkit-overflow-scrolling: touch) {
  /* CSS specific to iOS devices */
  .newsletter-banner {
    background-attachment: scroll;
  }
}
</pre></body></html>