/* 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: #a8c0ff;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #3f2b96, #a8c0ff);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3f2b96, #a8c0ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


h1 {
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
    }
}
h1 {
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
    }


<style>
@font-face {
font-family: pixel;
src: url(https://dl.dropbox.com/s/kmhe7d3n18vdz5e/w95fa.woff?dl=0);
}
 
pixel {
font-family: pixel;
font-size: .75em;
color: #000;
}
</style>
 
<div id="pixel">pixel</div>
 

