/* Reset margins and paddings */
body {
  margin: 8px;   /* default browser margin */
  padding: 0;
  font-family: serif; /* default Times New Roman-ish */
  color: black;
  background: white;
}

/* Reset headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 0.67em 0; /* default h1 spacing */
}

/* Reset paragraphs */
p {
  margin: 1em 0;
}

/* Reset links */
a {
  color: #0000EE; /* default blue */
  text-decoration: underline;
}
a:visited {
  color: #551A8B; /* default purple */
}
a:active {
  color: #FF0000; /* default red */
}

/* Reset forms and buttons */
input[type="button"], input[type="submit"], button {
  font: inherit;
  padding: 2px 6px;
  border: 2px outset buttonface;
  background-color: buttonface;
  color: buttontext;
}

/* Lists */
ul, ol {
  margin: 1em 0;
  padding-left: 40px;
}
li {
  margin: 0.5em 0;
}
