body {
          margin: 0;
          font-family: Arial, Helvetica, sans-serif;
          
          background-color: black;
          color: rgb(192, 192, 192);
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 20px;
          min-height: 100vh;
      }
      a {
          color: rgb(192, 192, 192);
          text-decoration: none;
      }
      a:hover {
          color: white;
      }
      #blog-content {
          max-width: 55ch;
          width: 100%;
          line-height: 1.6;
      }
      h1, h2, h3 {
          font-weight: 100;
          color: rgb(192, 192, 192);
      }
      h1 { text-align: center; margin-bottom: 40px; }
      h2 { margin-top: 40px; border-bottom: 1px solid #333; padding-bottom: 10px; }
      .bottom-links {
          margin-top: 40px;
          display: flex;
          justify-content: center;
          gap: 20px;
          width: 100%;
          max-width: 55ch;
      }
      .post-date {
          font-style: italic;
          color: #888;
          margin-bottom: 20px;
      }
      img {
          max-width: 100%;
          height: auto;
          display: block;
          margin: 20px 0;
          border-radius: 5px;
      }
      .btn {
          display: inline-block;
          border: 1px solid rgb(192, 192, 192);
          border-radius: 20px;
          padding: 10px 20px;
          background-color: rgba(0, 0, 0, 0.5);
          text-decoration: none;
          color: rgb(192, 192, 192);
          cursor: pointer;
          transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
          text-align: center;
          margin-top: 40px;
          margin-bottom: 20px;
      }
      .btn:hover {
          background-color: rgb(192, 192, 192);
          color: black;
      }

      #logo {
          width: 120px;
          transition: filter 200ms ease-in-out;
      }

      #logo:hover {
          filter: brightness(1.2);
      }
  a[href^="mailto:"]:not(.btn) {
            color: inherit !important;
            text-decoration: none !important;
        }

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100lvh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/bg-lepidodendron.png') center/cover no-repeat;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}
