@charset "UTF-8";

/* General Notes: */

/* We begin with Eric Meyer's CSS reset.  */
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed, 
  figure, figcaption, footer, header, hgroup, 
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure, 
  footer, header, hgroup, menu, nav, section {
    display: block;
  }

@font-face {
  font-family: 'Inconsolata';
  src: url('Inconsolata.otf');
  }

@font-face {
  font-family: 'IMFellDWPica-Regular';
  src: url('IMFellDWPica-Regular.ttf');
  }

@font-face {
  font-family: 'IMFellDWPica-Italic';
  src: url('IMFellDWPica-Italic.ttf');
  font-style: italic;
  }

.navbar {
   position: fixed;
   bottom: 2%;
}

.navbar span {
  display: block;
  text-align: center;
  color: blue;
  font-family: 'Inconsolata';
  text-decoration: none;
}

.navbar a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

.navbar a {
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline; 
  color: black;
}

.navbar a.active {
  color: red;
   text-decoration: none; 
}

h1 {
  font-family: 'IMFellDWPica-Regular';
  margin: 0 auto;
  width: 70%;
  padding: 1em;
  font-weight: bold;
  font-size: 150%;
  }

body {
  font-family: 'IMFellDWPica-Regular';
  margin: auto;
  width: 90%;
  line-height: 1em;
  background-color: #f1c378;
}

i {
    font-family: 'IMFellDWPica-Italic';
}

/* For Responsive Design, try setting the font size for different viewport sizes, 16 or 18 for the biggest */

  @media screen and (min-width: 1px) {  
    body {
      font-size: 5px;
    }
  }

  @media screen and (min-width: 465px) {  
    body {
      font-size: 8px;
      width: 90%;
    }
  }

  @media screen and (min-width: 565px) {  
    body {
      font-size: 10px;
      width: 90%;
    }
  }

  @media screen and (min-width: 740px) {  
    body {
      font-size: 12px;
       width: 90%;
    }
  }

  @media screen and (min-width: 865px) {  
    body {
      font-size: 16px;
      width: 80%;
    }
  }

  @media screen and (min-width: 1065px) {  
    body {
      font-size: 20px;
      width: 70%;
    }
  }

  @media screen and (min-width: 1280px) {  
    body {
      font-size: 24px;
      width: 70%; 
    }
  }

  @media screen and (min-width: 1500px) {  
    body {
      font-size: 28px;
      width: 70%;
    }
  }