/* 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: #323b4a;
  color: #dae4f5;
  font-family: Verdana;
  padding: 20px 300px;
}


h1 {
  font-size: 2.5em; /* makes it big, you can adjust to 3em or px if you prefer */
  margin: 4px 0;    /* 4px top and bottom, 0 left and right */
  text-decoration: underline;
}

.specialnote {
  width: 33.33%;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}