/* override theme font with Iosevka */
body,
code,
kbd,
pre,
.post-content {
  font-family: 'Iosevka', monospace;
}

.footer__inner {
  font-size: 0.7rem;
  opacity: 0.3;
}

/* nav menu items */
.navigation-menu__inner>li {
  font-size: 1.25rem;
}

/* homepage */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 40px 0;
}

.home figure {
  margin: 0;
  max-width: 800px;
  width: 100%;
}

.home .home-cover {
  border: 10px solid var(--accent);
  padding: 5px;
  width: 100%;
  height: auto;
}

.whoami-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--accent);
  text-decoration: none;
  font-size: 2rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.whoami-link:hover {
  opacity: 1;
}