a {
	text-decoration: none;
	transition: none;
	color: #e1e5e7;
	opacity: .6;
	font-size: 13px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto Mono", monospace;
	font-weight: 300;
	font-style: normal;
	background-color: #16191b;
	color: #e1e5e7;
	line-height: 1.7;
	padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 600px;
	margin: 40px auto 0 auto;
	padding: 0 20px;
}

.intro h1 {
	font-size: 26px;
	margin-bottom: 10px;
}

.intro p {
	font-size: 13px;
	margin-bottom: 40px;
	color: #e1e5e7;
}

#github {
    transition: opacity 0.25s ease-in-out;
}

#github:hover {
    opacity: .9;
}

.books {
  margin-top: 40px;
}

.book-year {
  margin-bottom: 40px;
}

.book-year h2 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}

.book-year ul {
  list-style: none;
  padding-left: 0;
}

.book-year li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.book-entry {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
}

.book-date {
  opacity: 0.4;
  min-width: 80px;
  font-size: 12px;
}

.book-title {
  color: #e1e5e7;
  text-decoration: none;
  opacity: 1;
  font-size: 13px;
  transition: opacity 0.25s ease-in-out, text-decoration-color 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.book-title:hover {
  opacity: 1;
  text-decoration-color: currentColor;
}

.book-author {
  font-size: 12px;
  opacity: 0.5;
  display: flex;
  gap: 12px;
  margin-top: 2px;
}

.book-author::before {
  content: "";
  display: inline-block;
  width: 80px;
}

.total-read {
  font-size: 11px;
  font-weight: 100;
  opacity: .6;
}