        body {
            margin: 0;
            
            background-color: black;
            color: rgb(192, 192, 192);
            min-height: 100vh;
            font-family: Arial, Helvetica, sans-serif;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            padding: 5vh 0 10vh;
        }
        h1{
            margin: 0;
            line-height: 0;
        }
        h1, h2, h3 {
            font-weight: 100;
            color: rgb(192, 192, 192);
        }
        h2 {
            margin-top: 40px;
            margin-bottom: 10px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
            font-weight: 100;
            color: rgb(192, 192, 192);
            font-size: 1.2em;
        }
        .post-date {
            font-style: italic;
            color: #888;
            font-size: 0.9em;
            margin-top: 0;
            margin-bottom: 2em;
        }
        h3 {
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            font-weight: 100;
            color: rgb(192, 192, 192);
        }
        p, li{
          line-height: 1.5em;
        }
        .bottom-links {
          margin-top: 40px;
          display: flex;
          justify-content: flex-start;
          gap: 20px;
          width: 100%;
          max-width: 55ch;
      }
        #blog-content{
          padding: 20px;
          max-width: 55ch;
        }
        
        #blog-content hr {
          display: none;
        }

        #blog-content a {
          color: rgb(192, 192, 192);
          text-decoration: none;
        }

        #blog-content a:hover {
          color: white;
        }

        .btn {
          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;
          display: inline-block;
          margin-right: 10px;
      }

      .btn:hover {
          background-color: rgb(192, 192, 192);
          color: black;
      }

      #blog-content a.btn {
          color: rgb(192, 192, 192);
          text-decoration: none;
      }

      #blog-content a.btn:hover {
          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);
}
