/* 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: 'Witchy';
  /*src: url('NIAGENG[1].TTF') format('TrueType');
}*/
   
body {
  background-color: #23485B;
  color: #FFF2D7;
  font-family: 'Niagra Engraved';
}


h1 {
  text-align: center;
}

p {
  text-align: center;
}

@supports (-webkit-text-stroke: 3px black) {
  h2 {
    color: #23485B; 
    -webkit-text-stroke: 0.25px #FFF2D7;
    letter-spacing: 0.5em;
  }
}  