1html, body {
2  height: 100%;
3  @include fontFamily;
4  font-size: 16px;
5  color: $black;
6}
7
8p {
9  margin-bottom: .8em;
10  transition: margin .05s;
11}
12
13a {
14  color: $links;
15  text-decoration: none;
16  &:hover {
17    text-decoration: underline;
18  }
19  :focus {
20    color: $links;
21  }
22}