@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
body {
  font-family: "Mulish", sans-serif;
  max-width: 760px;
  padding: 2rem;
  margin: 0 auto;
  color: #414a53;
}
body ::selection {
  background-color: #0081A7;
  color: white;
}

p, ul, ol {
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  transition: color 250ms;
}

p > a {
  color: #0081A7;
}

a:hover {
  color: #0081A7;
}

a.btn {
  background-color: #0081A7;
  color: white;
  border-radius: 2px;
  border: 1.5px solid #0081A7;
  padding: 0.4em 0.8em;
  -webkit-transition: color 250ms, background-color 250ms;
  -moz-transition: color 250ms, background-color 250ms;
  -o-transition: color 250ms, background-color 250ms;
  transition: color 250ms, background-color 250ms;
}

a.btn:hover {
  color: #0081A7;
  background-color: white;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  color: #abb7b7;
  border-top: 1px solid lightgrey;
  margin-top: 100px;
}
footer a:not(:last-of-type) {
  margin-right: 8px;
}
footer .footer-icons {
  margin-top: 8px;
}

@media (min-width: 500px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-icons {
    margin-top: 0;
  }
}
nav {
  text-align: center;
  margin-bottom: 32px;
}
nav h2 {
  color: #0081A7;
}
nav .nav-links a:not(:last-child) {
  margin-right: 1rem;
}
nav .nav-links .nav-current {
  color: #0081A7;
  padding: 0 0 2px;
  border-bottom: 1px solid lightgrey;
}

@media (min-width: 550px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid lightgrey;
  }
}
.post-preview {
  margin-bottom: 40px;
}

.post-title {
  margin-bottom: 8px;
}

.post-date {
  color: #abb7b7;
  margin-bottom: 16px;
}

.post-cover-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.about .about-pics {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .about-selfie {
  width: 300px;
  border-radius: 500px;
}
.about .about-nametag {
  width: 150px;
}
.about .about-nametag {
  margin: -50px auto;
}
.about p {
  margin-top: 75px;
}

@media (min-width: 768px) {
  .about-pics {
    margin-right: 20px;
  }
  .about {
    flex-direction: row;
    align-items: center;
  }
  p {
    margin-top: 0;
  }
}
.reading-list {
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.reading-list-item {
  display: none;
}

.book-img {
  width: 150px;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.book-title {
  display: block;
  text-decoration: none;
}

#year {
  font-size: 26px;
  text-align: center;
  margin: 0 10px;
}

#year-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

#prev-year, #next-year {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #0081A7;
  min-height: 44px;
  min-width: 44px;
  padding: 12px 16px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

#prev-year:focus, #next-year:focus {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

/*# sourceMappingURL=styles.css.map */