<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
body {
  /* Location of the image */
 background-image: url(/DC_PublicServices/img/Picture1_3.png?9734);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
background-size: contain;

  
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;
}

</pre></body></html>