/* 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." */

body {
  background-color: #B0BF1A;
  color: #6495ED;
  font-family: Garamond;
}

body {
  background-image: 
  
  linear-gradient(rgb(200 0 255 /.1), rgb(255 255 0 / 0.5)),  url("oslobg.png"); 
  /*in the rgb the 3 numbesr are rgb and its divide by tranparancy. 
    the gradient is overlayed over the url*/
  background-repeat: no-repeat;
  background-size: 1300px 1100px;
  
}

h1 {
  color: red;
}

h2 {
  color: #91e69c;
  }
  
h3 {
  color: rbg(222, 188, 235);
  }
  