@font-face {
  font-family: 'Pixelify Sans';
  src: url("/static/fonts/PixelifySans-Regular.ttf");
}

* {
  scroll-behavior: smooth;
  font-family: 'Pixelify Sans', monospace;
}

body {
  background-color: #0d1014;
  color: #d1d5db;
  padding: 2rem;
}

h1,
h2,
h3 {
  color: #22c55e;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

a {
  color: #22c55e;
  text-decoration: none;
}

a:hover {
  color: #86efac;
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
  display: inline;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
}

ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

code {
  background-color: #000;
  padding: 0.1rem 0.2rem;
  border-radius: 1px;
  font-size: 0.9rem;
  color: #888888;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
}

pre {
  background-color: #000;
  border: 1px solid #374151;
  border-radius: 1px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  font-family: 'Fira Code', monospace;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th,
td {
  border: 1px solid #374151;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

th {
  background-color: #000000;
  color: #22c55e;
  text-align: left;
}

td {
  background-color: #000;
  color: #d1d5db;
}

.sourceCode {
  background-color: #000000;
  padding: 2px;
  overflow-x: auto;
  font-family: 'Fira Code', monospace;


}

.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0ch;
  animation: typing 2s steps(20, end) forwards;
}

@keyframes typing {
  from {
    width: 0ch;
  }

  to {
    width: 16ch;
  }
}
