/* 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 {

  
  color: white;
  font-family: helvetica;
  text-align: center;
 Background-image: url("back-track.PNG");
 background-repeat: no-repeat;
  background-position: center;
  Background-color: black;
}
@font-face {
  font-family: rimouski;
  src: url(rimouski.otf);
}
@font-face {
  font-family: Germanica;
  src: url(fluted-germanica.ttf);
}
h1{
        font-family: 'Germanica', sans-serif;
        font-size: 6em;/* Apply your custom font, with a fallback */
        margin-bottom: 20px;
    }
h2{
        font-family: 'Germanica', sans-serif;
        font-size: 5em;/* Apply your custom font, with a fallback */
        margin-bottom: 20px;
    }
h3{
        font-family: 'Germanica', sans-serif;
        font-size: 4em;/* Apply your custom font, with a fallback */
        margin-bottom: 20px;
    }
h4{
        font-family: 'rimouski', sans-serif;
        font-size: 1em;/* Apply your custom font, with a fallback */
        margin-bottom: 20px;
    }
h5{
        font-family: 'Germanica', sans-serif;
        font-size: 2em;/* Apply your custom font, with a fallback */
        margin-bottom: 20px;
    }
h6 {
        font-family: 'Germanica', sans-serif;
        font-size: 1em;/* Apply your custom font, with a fallback */
        margin-bottom: 20px;
    }
p {
        max-width: 300px; /* Sets a fixed width of 500 pixels */
        text-align: left;
        text-indent: 2em;
        margin: 30px auto; /* Adds Xpx margin to all sides */
        margin-top: 10px; /* Adds Xpx margin only to the top */
    }
  ul,ol,menu { font-family: rimouski;
  color: white;
  text-align: center;
  font-size: 35px;
        padding: 0;
        margin: 0;
        line-height: 1.25;
        margin-bottom: 50px;
}
/* unvisited link */
a:link {
  color: White;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: maroon;
}

/* selected link */
a:active {
  color: maroon;
}
.no-bullets {
  list-style-type: none;
}
 