/* Keeps Apple/Safari overscroll and expanded browser background black.
   This does not alter the website's existing sections or component styling. */
:root {
  background-color: #000000;
}

html {
  background: #000000 !important;
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
}

/* Safari uses the root canvas behind the page during bounce/expanded viewing. */
@supports (-webkit-touch-callout: none) {
  html {
    background-color: #000000 !important;
  }
}
