body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #ffffff;
  color: #111111;
}

/* Navbar */
nav {
      width: 100%;
      background-color: #fdfdfd;
      border-bottom: 1px solid #ddd;
      background-color: #143642;
      padding: 1em 2em;
      box-sizing: border-box;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
    }

    nav .nav-title {
      font-size: 1.1em;
      color: white;
    }

    nav .nav-links a {
      margin-left: 1em;
      text-decoration: none;
      color: white;
    }

    nav .nav-links a:hover {
      text-decoration: underline;
    }




/* Content container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
    background: white;
    color: #111;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Headline styling \*/
h1.headline, .headline {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #0F8B8D;
    margin-bottom: 1rem;
}

/* Cards (used for blog summaries on index) \*/
    .card {
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.card a {
color: #0F8B8D;
text-decoration: none;
}

.card a\:hover {
text-decoration: underline;
}

/* Code and preformatted blocks \*/
pre, code {
    background-color: #f2f2f2;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

pre code {
display: block;
padding: 1em;
}

/* Subscribe box (now standardized) \*/
.subscribe {
    background-color: #f4f4f4;
    padding: 1rem;
    margin-top: 3rem;
    border-radius: 10px;
    max-width: 1000px;
}

.subscribe input {
    padding: 0.5rem;
    width: 70%;
    margin-right: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subscribe button {
    padding: 0.5rem 1rem;
    background-color: #87A330;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.subscribe button\:hover {
background-color: #6b8a27;
}

/* Share button \*/
.share {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
}

.share button {
    background-color: #0F8B8D;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.share button\:hover {
background-color: #0c6e70;
}

/* Prose-style text block formatting \*/
.prose {
line-height: 1.75;
font-size: 1.1rem;
padding-left: 2rem;
padding-right: 2rem;
box-sizing: border-box;
}

.prose h1, .prose h2, .prose h3 {
color: #0F8B8D;
font-family: 'Georgia', serif;
margin-top: 2rem;
}

.prose p {
margin-bottom: 1.25rem;
text-indent: 0px;
}

.prose ul, .prose ol {
margin-left: 2rem;
margin-bottom: 1rem;
}

/* Responsive layout for small screens \*/
@media (max-width: 600px) {
  .container, .prose {
      padding-left: 1rem;
      padding-right: 1rem;
}

body {
font-size: 1rem;
}

h1, h2, h3 {
font-size: 1.25rem;
}
}
