@import url("gruvbox.css");

* {
  box-sizing: border-box;
}

body {
  margin: 15px auto;
  padding: 0 15px;
  max-width: 60ch;
  font-size: 20px;
  line-height: 1.3;
  background: var(--bg);
  color: var(--fg1);
  font-family: 'Oswald', sans-serif;
}

h1 {
  font-family: 'Oswald', sans-serif;
}

p {
  text-align: justify;
}

pre {
  text-align: justify;
  overflow: scroll;
  font-size: 20px;
  max-width: 60ch;
  background: var(--bg1);
  padding: 0.5ch;
}

 /* Hide scrollbar for Chrome, Safari and Opera */
pre::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE and Edge */
pre {
  scrollbar-width: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

#post_list ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  width: auto;
}

img {
  width: 100%;
  height: auto;
}

#post_list ul li:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin: 5px;
  background: var(--purple);
}

#post_list ul a {
  display: block;
  padding: 0px 14px;
  margin: 0px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:link, a:visited {
  color: var(--purple);
}

code {
  text-decoration: none;
  color: var(--blue);
}
