* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #333;
  font-family: "Georgia", system-ui, serif;
  line-height: 1.5;
  font-size: 1.125em;
  max-width: 50rem;
  margin: 0 auto;
  padding: 2rem;
}

h1, h2, h3 {
  color: #000;
  font-weight: normal;
  line-height: 1.26em;
  padding: 1em 0 0.5em 0;
}

h1 {
  font-size: 2em;
  padding-top: 0;
  border-bottom: 2px solid #3498db;
}

h2 {
  font-size: 1.5876em;
  color: #2980b9;
  text-transform: uppercase;
}

h3 {
  font-size: 1.26em;
  color: #34495e;
}

p {
  line-height: 1.5em;
  padding: 0.75em 0;
}

h3 + p {
  padding-top: 0;
}

ul {
  padding-left: 1.26em;
  padding-bottom: 0.75em;
}

li {
  list-style-type: disc;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

hr {
  border: none;
  height: 1px;
  background-color: #ecf0f1;
  margin: 1em 0;
}

code {
  background-color: #f8f9fa;
  padding: 0em 0.2em;
  border-radius: 3px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  color: #e74c3c;
  border: 1px solid #e1e4e8;
  transition: all 0.2s ease;
}

code:hover {
  background-color: #ecf0f1;
  border-color: #d1d5da;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0.75em 0;
}

.tech-pill {
  background-color: #f8f9fa;
  padding: 0.1em 0.2em;
  border-radius: 3px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  color: #e74c3c;
  border: 1px solid #e1e4e8;
  transition: all 0.2s ease;
}

.tech-pill:hover {
  background-color: #ecf0f1;
  border-color: #d1d5da;
}

@media print {
  html {
    font-size: 14px;
  }
  body {
    padding: 1cm;
    max-width: none;
    font-size: 1em;
  }
  h1, h2, h3 {
    padding: 0.75em 0 0.25em 0;
  }
  p {
    padding: 0.5em 0;
  }
  ul {
    padding-bottom: 0.5em;
  }
  .tech-pills {
    gap: 0.25em;
    padding: 0.5em 0;
  }
}

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