/* src/components/language-bullets.css */
ul .lang {
  list-style: none;
  padding: 0;
  margin: 0;
}
li.lang::before {
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  content: "\2022";
  color: #888;
  transform: scale(1.5, 1.5);
}
li.js::before {
  color: #f1e05a;
}
li.html::before {
  color: #e34c26;
}
li.go::before {
  color: #00ADD8;
}
li.python::before {
  color: #3572A5;
}
li.css::before {
  color: #563d7c;
}
li.sh::before {
  color: #89e051;
}
li.objc::before {
  color: #6866fb;
}
li.cpp::before {
  color: #f34b7d;
}
li.docker::before {
  color: #384d54;
}
li.twitter::before {
  color: rgb(76, 159, 235);
}

/* src/components/blog-index-list/index.css */
.blog-index-list {
  padding-left: 0px;
}
.blog-index-list .blog-entry {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
}
.blog-index-list .blog-entry-date {
  color: var(--accent-foreground);
  font-family: var(--font-code);
  flex-shrink: 0;
}

/* src/projects/previous-projects/style.css */
.header {
  text-align: center;
  padding-bottom: 1em;
}
.header .avatar {
  border: 1px solid var(--accent-background);
  border-radius: 50%;
  padding: 4px;
}
.header .title {
  margin: 0;
  font-size: 3em;
}
.header .subtitle {
  color: var(--accent-foreground);
  font-size: .8em;
}
.portfolio figcaption {
  font-size: 0.8em;
  font-weight: unset;
  color: var(--accent-foreground);
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
}
.recent-post-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recent-post-container {
  max-width: 45em;
}
.section-header {
  text-align: center;
}
@media screen and (max-width: 45em) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}
@media print {
  .grid-container > div {
    page-break-inside: avoid;
  }
  .header .subtitle,
  .portfolio figcaption {
    color: var(--accent-foreground);
  }
  .avatar {
    height: 5em;
    width: 5em;
  }
}
/*# sourceMappingURL=style-TINBEAM5.css.map */
