/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@font-face {
  font-family: 'pixeloperator';
  src: url('/pixeloperator/PixelOperator.ttf?#iefix') format("truetype"); 
}

body {
     background-image: url('/images/IMG_1679.JPG'); /* Replace with your image's filename */
     background-repeat: no-repeat; /* Prevents the image from repeating */
     background-size: cover; /* Stretches the image to cover the entire page */
  color: black;
  font-family: 'pixeloperator'
}
