.post-content h1,
.post-content h2 {
  font-size: 4.2rem;
  margin-top: 3rem;
}

.post-content h3,
.post-content h4 {
  font-size: 3rem;
  margin-top: 1rem;
}

.post-content h5,
.post-content h6 {
  font-size: 2.4rem;
  margin-top: 1rem;
}

.post-content p {
  font-size: 1.8rem;
}

.post-content a:link,
.post-content a:visited {
  color: #bbd8bd;
  text-decoration: none;
  transition: all 200ms;
}
.post-content a:hover,
.post-content a:active {
  color: #96b298;
}

.post-content img {
  width: 100%;
  height: auto;
  transition: 200ms;
  margin: 0.5rem 0;
}

.post-content img:hover {
  scale: 1.02;
}

/* CODE SNIPPETS */
.post-content pre {
  padding: 1.2rem;
  background-color: #0a0a0aad;
  overflow-x: auto;
}

.post-content pre code {
  color: #bbd8bd;
  padding: 0 0.5rem;
}

/* BASIC UNORDERED LIST */

.post-content ul {
  margin-left: 2rem;
}

.post-content ul li {
  list-style: square;
}

/* NESTED UL ITEMS. I'm not sure that's how you do it, but it works. */
.post-content ul li ul li {
  list-style: circle;
  /* translate: 2rem 0; */
}

.post-content hr {
  margin: 1.5rem 0;
  border-color: #96b298;
}

.post-content figure {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.post-content figcaption p {
  font-size: 1.4rem;
  color: #ffb56f;
}

.post-content blockquote {
  border-left: 0.5rem solid #986c43;
  padding: 1rem;
}

.post-content blockquote cite {
  color: #ffb56f;
}

.post-content p code {
  color: #ffb56f;
  background-color: #0a0a0a69;
  padding: 0 0.5rem;
}

.post-content mark {
  background-color: #ffb56f;
  padding: 0 0.5rem;
}

.post-content table,
th,
td {
  border: 0.1rem solid #fafafa;
  border-collapse: collapse;
}

.post-content th,
td {
  padding: 0.5rem;
}

.post-content abbr {
  color: #ffb56f;
  text-decoration-color: #ffb56f;
}

.post-content kbd {
  background-color: #0a0a0a;
  padding: 0 0.5rem;
}

.post-content form {
}

.post-content fieldset {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.2rem solid #986c43;
  background-color: #fafafa;
  color: #29322e;
  padding: 3rem;
  max-width: 100%;
}

.post-content fieldset legend {
  padding: 0.2rem 0.6rem;
  margin-left: 3rem;
  background-color: #986c43;
  color: #fafafa;
}

.post-content fieldset input {
  max-width: 100%;
  width: auto;
  padding: 0.6rem 1rem;
  border: 0.2rem solid #986c43;
}

.post-content fieldset select {
  max-width: 100%;
  width: auto;
  padding: 0.6rem 1rem;
  border: 0.2rem solid #986c43;
}

.post-content fieldset textarea {
  max-width: 100%;
  width: auto;
  padding: 0.6rem 1rem;
  border: 0.2rem solid #986c43;
}

.post-content button {
  max-width: 100%;
  width: auto;
  padding: 0.6rem 1rem;
  border: 0.2rem solid #986c43;
  background-color: #986c43;
  color: #fafafa;
  font-weight: 600;
  font-size: 2rem;
  transition: 200ms;
}

.post-content button:hover {
  border: 0.2rem solid #986c43;
  background-color: #fafafa;
  color: #986c43;
}
