/* Base styles */
html {
  color: gray;
  font-size: 15pt;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}


/* Headings */
h1 {
  color: black;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-indent: -1rem;
}

/* Paragraphs */
p {
  font-size: 13pt;
  line-height: 1.4;
}

/* Superscript scaling (final version) */
sup {
  font-size: 60%;
}

/* Definitions */
dfn {
  font-weight: bold;
  text-transform: lowercase;
}

/* Small text */
small {
  font-style: italic;
}

/* Layout spacing */
body {
  margin: 10%;
}

article {
  margin: 6rem 0;
}

section {
  margin: 2.5em 0;
}

/* Alignment */
aside {
  text-align: center;
}

cite {
  text-align: right;
  display: block;
}

/* Links */
a {
  text-decoration: none;
}

/* Code styling */
code {
  color: steelblue;
}