body {
  font-family: Verdana, sans-serif;
  margin: auto;
  padding: 1rem;
  max-width: 45rem;
  text-align: left;
  background-color: #9af3ff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  color: #00665a;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  color: #333333;
}

a {
  color: #d42b77;
}

h1 { font-size: 3em; }
h2 { font-size: 2.25em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 { font-size: 1em; }
small { font-size: 1em; }
p { font-size: 1.25em; }
li { font-size: 1.25em; }

.title {
  text-decoration: none;
  border: 0;
}
.title h1 {
  font-size: 2em;
  margin: 1.25em 0 1.25em 0;
  text-align: center;
}

.title span {
  font-weight: 400;
}

/* Got this number with the following formula:
 * (1.5 + (3.5 * 3) + (0.3 * 6)) * 2 + 45
 *  Where 1.5 is the space between the nav and the edge,
 *  3.5 is the width of the nav links,
 *  0.3 is the padding between the nav links,
 *  and 45 is the width of the width of the main content. */
@media (min-width: 73rem) {
  nav {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
  }
}

nav {
  border: 1px solid;
  margin: auto;
  width: max-content;
  border-radius: 5px;
  font-size: 1.25em;
}

nav a {
  margin: 0.3rem 0.3rem;
  display: inline flex;
  flex-direction: column;
  align-items: center;
  width: 3.5rem;
}

nav a svg {
  width: 2.5rem;
  color: #00665a;
}

table {
  width: 100%;
}

table,
th,
td {
  border: 1px solid;
  border-collapse: collapse;
  padding: 0.3em;
}

img {
  max-width: 100%;
}

code {
  padding: 0.1em 0.3em;
  color: #333333;
  background-color: #FFDEEE;
}

pre code {
  display: block;
  padding: 1.25em;
  font-size: 1.25em;
  white-space: pre-wrap;
  overflow-x: auto;
  text-wrap: nowrap;
}

blockquote {
  border-left: 1px solid #333333;
  color: #333333;
  padding-left: 1.25em;
  font-style: italic;
}

footer {
  padding: 1.5em;
  text-align: center;
}

/* blog posts */
ul.blog-posts {
  list-style-type: none;
  padding: unset;
}

ul.blog-posts li {
  display: flex;
  margin-bottom: 0.625em;
}

ul.blog-posts li span {
  flex: 0 0 8.125em;
}

ul.blog-posts li a:visited {
  color: #ff67c1;
}

/* "Skip to main content" link */
.skip-link {
  position: absolute;
  top: 5;
  transform: translateY(-600%);
  transition: transform 0.5s;
  padding: 0.375em;
}

.skip-link:focus {
  transform: translateY(0%);
}
