.home_container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin: auto;
  margin-top: 80px;
}

h1 {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

h2 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

section {
  max-width: 650px;
  margin: auto;
  margin-bottom: 12px;
  margin-top: 12px;
}

p {
  color: var(--body-color);
  transition: color 0.45s ease-in-out;
}

b {
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.45s ease-in-out;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  transition: border-top 0.45s ease-in-out;
}

.post_list {
  list-style: none;
  padding-left: 0;
}
.post_list li a {
  color: var(--body-color);
  text-decoration: underline;
  padding-left: 10px;
  transition: color 0.45s ease-in-out, border-bottom 0.3s ease-in-out;
  &:hover {
    color: var(--accent);
  }
}
