@font-face {
  font-family: DMSerifRegular;
  src: url(/assets/fonts/DMSerifDisplay-Regular.ttf) format("truetype");
}
@font-face {
  font-family: DMSerifItalic;
  src: url(/assets/fonts/DMSerifDisplay-Italic.ttf) format("truetype");
}
@font-face {
  font-family: IBMPlexItalic;
  src: url(/assets/fonts/IBMPlexMono-Italic.ttf) format("truetype");
}
@font-face {
  font-family: IBMPlexMono;
  src: url(/assets/fonts/IBMPlexMono-Regular.ttf) format("truetype");
}
@font-face {
  font-family: IBMPlexLight;
  src: url(/assets/fonts/IBMPlexMono-Light.ttf) format("truetype");
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Jetbrains;
  src: url(/assets/fonts/JetBrainsMono-Regular.ttf) format("truetype");
}
#navigation {
  padding: 20px;
  display: flex;
  flex-direction: row;
  position: fixed;
  background-color: #1c1b1b;
  width: 100%;
  top: 0;
  border: solid #21262d 1px;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
}

#navigation li {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-family: IBMPlexMono;
  font-size: 20px;
}

.nav-link-right {
  padding: 10px;
  font-family: IBMPlexMono;
  font-size: 15px;
  font-weight: bolder;
  border: solid 1px #21262d;
  border-radius: 12px;
  display: flex;
  gap: 5px;
  align-items: center;
  background-color: green;
}

.nav-link-center {
  font-family: IBMPlexMono;
  font-size: 15px;
}

.nav-title {
  font-family: IBMPlexMono;
  font-size: 20px;
  color: #58a6ff;
}

#main {
  display: flex;
  padding: 20px;
  margin-top: 100px;
}

.grid {
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  height: 160px;
  width: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: #161b22;
  border-radius: 10px;
  border: #21262d solid 1px;
}

.card-body {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: IBMPlexMono;
  color: #58a6ff;
}

.card-desc {
  font-family: Jetbrains;
  color: #656c74;
}

.card-date {
  font-family: Jetbrains;
  color: #383e46;
}

.card-link {
  font-family: IBMPlexMono;
  color: #888580;
  font-size: 18px;
  transition: color 0.5s;
}

.card-link:hover {
  color: #58a6ff;
}

.oneko {
  position: fixed;
  transform: translateX(290px);
}

#post-main {
  display: flex;
  padding: 30px;
  margin-top: 100px;
  justify-content: center;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 780px;
  align-items: center;
}

.post-line {
  width: 100%;
}

.post-content-main {
  color: #fcfbf8;
  font-family: Inter;
  width: 100%;
  line-height: 1.75;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-title {
  font-family: Jetbrains;
  color: #fcfbf8;
}

.post-desc {
  font-family: Jetbrains;
  color: #656c74;
}

.post-date {
  font-family: Jetbrains;
  color: #383e46;
}

a {
  color: #fcfbf8;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 800;
  font-family: Inter;
}

li {
  list-style-type: none;
}

h1, h2, h3 {
  font-family: IBMPlexMono;
}

p {
  font-family: IBMPlexMono;
  letter-spacing: 0px;
}

pre {
  background-color: #1c1b1b;
  padding: 10px;
  border: solid 1pt;
  border-color: #21262d;
  border-radius: 10px;
}

hr {
  width: 50%;
}

.oneko-post {
  transform: translate(-300px, 20px);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #0d1117;
}/*# sourceMappingURL=main.css.map */