@charset "UTF-8";
@font-face {
  font-family: "Hack Nerd Regular";
  src: url("../fonts/HackNerdFont-Regular.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #191a19;
  color: #d8e9a8;
  font-family: "Hack Nerd Regular", monospace;
  padding: 5rem 16rem;
  line-height: 1.6;
}

nav {
  margin-bottom: 5rem;
}
nav a {
  font-size: 1.5rem;
}

h1,
p {
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  color: #1e5128;
}

h2 {
  font-size: 2rem;
  color: #d8e9a8;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
}

a {
  color: #1e5128;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: rgb(57.5675675676, 155.4324324324, 76.7567567568);
}

ul,
ol {
  margin: 1.5rem 0rem;
  line-height: 2;
}

ul {
  list-style-type: "-";
}

blockquote {
  background-color: #323432;
  color: #d8e9a8;
  border-left: 0.5rem solid #1e5128;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  line-height: 1.6;
  border-radius: 0.25rem;
}
blockquote p {
  margin: 0;
}
blockquote {
  /* cite {
      display: block;
      margin-top: 0.75rem;
      font-style: normal;
      font-size: 0.875rem;
      color: lighten($primary-text-color, 15%);
      text-align: right;

      &::before {
          content: "— ";
      }
  } */
}

pre {
  background-color: #323432;
  padding: 1.25rem;
  border-radius: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
}
pre code {
  margin: 0;
}

code {
  font-family: "Fira Code", "JetBrains Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d8e9a8;
  background: none;
  white-space: pre;
}

.blog_info {
  text-align: center;
  margin-bottom: 6rem;
}

.blog_name {
  font-size: 2.5rem;
  font-weight: bold;
}

.blog_bio {
  font-size: 1.2rem;
}

.article_list ul {
  list-style-type: "-> ";
}

.article_info {
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom-style: solid;
  border-color: #1e5128;
  border-width: thin;
}
.article_info h1 {
  margin-bottom: 0.5rem;
}

.article_body ul,
.article_body ol {
  margin-left: 5rem;
}
.article_body ul {
  list-style-type: ">> ";
}

@media (max-width: 768px) {
  body {
    padding: 1.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  p {
    font-size: 1rem;
  }
  ul,
  ol {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    line-height: 1.6;
  }
  li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    word-wrap: break-word;
  }
  li ul,
  li ol {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
