/* 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;
}

/* Set up the font */
@font-face {
  font-family: IBMCGA; /* We define a name for our font family */
  src: url(IBMCGA.ttf); /* we tell the browser where it is */
}

/* Use the font */
body {
  font-family: IBMCGA; /* We tell the browser to use the font we defined for text in <body>...</body> */
}

@media (min-width:636px) {
  #gradient {
    width: 604px;
  }
}

#gradient {
  background: #FFFFFF;
  padding: 8px;
  margin-left: 16px;
  margin-right: 16px;
}

/* unvisited link */
a:link {
  color: #00aaaa;
}
  a:visited {
  color: #aa00aa;
}
