/* assignment.css */

/* Add some style for div.section, etc. */

/* Allow nested sections with diminishing heading sizes,
   even though all the section titles are transformed to h2 headings.  */

h1 {
  font-size: 2.00em;
  font-weight: 300;

}

div.section h2 {
  font-size: 1.74em;
  font-weight: 400;

}

div.section div.section h2 {
  font-size: 1.37em;
  font-weight: 400;
}

/* below here result is untested */

div.section div.section div.section h2 {
  font-size: 1.18em;
  font-weight: 500;
}

div.section div.section div.section div.section h2 {
  font-size: 1.09em;
  font-weight: 500;
}

div.section div.section div.section div.section h2 {
  font-size: 1.04em;
  font-weight: 600;
}

/* Right-align numbers, such as points in a grading criteria table */

.number, .points {
  text-align: right;
}
