
@import url('https://fonts.googleapis.com/css?family=Montserrat|Roboto+Mono|Source+Code+Pro&display=swap');

.deadlink {
  text-decoration: underline;
  color: gray;
}

body {
	font-family: "Montserrat", "Segoe UI", sans-serif;
}

h1 {
	color: #202080;
}

h2 {
	color: darkred;
}

h3 {
	color: #404040;
	font-weight: bold;
	text-decoration: capitalize;
	font-size: 2em;
	background-color: #f8f8f8;
}

p {
	font-style: italic;
	color: #8080d0;
}

pre {
	font-family: "Roboto Mono", "Source Code Pro", consolas, monospace;
	font-size: 12pt;
	border-collapse: collapse;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

li {
  float: left;
}

li a {
  display: block;
  color: gray;
  text-align: center;
  padding: 5px;
  text-decoration: none;
}

li a:hover {
  background-color: #e0e0e0;
}

.dead-link {
    color: gray;
    text-decoration: line-through;
}