html {
  font-family: Optima, sans-serif;
  --primary-color: #367300;
}

body {
  padding-inline: 30%;
}

.navbar {
  margin-top: 4vh;
  border-bottom: 2px solid grey;
  padding-bottom: 3vh;
  margin-bottom: 2vh;
  display: inline-flex;
  width: 100%;
  align-items: center;
}

.header {
  font-size: 30px;
  font-weight: 600;
  color: black;
  margin-right: 3%;
  text-decoration: none;
}

.navbar-icon {
  width: 50px;
  height: auto;
  margin-left: auto;
  margin-inline-end: 0;
}

.navbar-link {
  margin-inline: auto;
  font-size: 16px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 0px;
  position: relative;
}

a, .navbar-link:hover {
  color: var(--primary-color);
}

.navbar-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary-color);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.navbar-link:hover {
  text-decoration: none;
}

.navbar-link:hover::after {
  width: 100%;
  left: 0;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-inline: 3%;
}

.social-link {
  display: inline-flex;
  color: black;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--primary-color);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.page-title {
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 4vh;
}

.home-intro {
  display: flex;
}

.content {
}

li {
  margin-top: 10px;
}

.list-link {
  margin-top: 5px;
  margin-left: 20px;
  list-style-type: circle;
}

/* Blog index list */
.post-list {
  list-style: none;
  padding-left: 0;
}

.post-list li {
  margin-top: 18px;
}

.post-date {
  display: block;
  color: grey;
  font-size: 14px;
  margin-top: 2px;
}

/* Blog post */
.post h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 4vh;
  margin-bottom: 1vh;
}

.post p {
  line-height: 1.6;
}

.post .post-date {
  margin-top: -2vh;
  margin-bottom: 4vh;
}

.post code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: #f2f2f2;
  padding: 1px 5px;
  border-radius: 4px;
}

.home-footer {
  display: grid;
}

.footer-headshot {
  width: 170px;
  height: auto;
  margin-inline: auto;
  margin-top: 2vh;
  margin-bottom: 2vh;
}