/* 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: 'Tox Typewriter';
src: url('fonts/Tox Typewriter.ttf') format("truetype");
color: white;
} 

p {

font-family: Tox Typewriter;
}
body { 
 
  font-size: 18px;
    color: white;} 

h1 {
    color: white;
    background-color: green;
    font-family: 'Pixelout Personal Use Only'
    src: url('fonts/Pixelout Personal Use Only.ttf) format('opentype')
}


