/* 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: white;
  color: black;
  font-family: Verdana;
}

  /* hella cool fon */
  @font-face {
font-family:'protomo';
src: url(https://dl.dropbox.com/s/n2rde8xf929fs56/Protomo-Outline.otf); 
}
 
@font-face {
font-family:'protomo-fill';
src: url(https://dl.dropbox.com/s/p7waq4bof8ne0qt/Protomo.otf); 
}
 
#protomo {
font-family:'protomo';
font-size: 3em;
}
 
#protomo-fill {
font-family:'protomo-fill';
font-size: 3em;
}

html {
  font-family: protomo; /* The font used across the page */
  color: #703000; /* The color of the text */
  cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat997.cur), auto; /* Custom cursor */
  font-size: 15px; /* How big the text is in pixels */
}