/* --- Restore sensible spacing for Markdown content --- */
main, #content {
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin: 1em 0; /* gives paragraphs breathing room */
}

ul, ol {
  margin: 1em 0;
  padding-left: 2em; /* indent lists */
}

li {
  margin: 0.3em 0;
}

img.md-image {
  margin: 1em auto;
}

hr {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #3e3e3e;
}
/* Inline code */
code {
  font-family: "Fira Code", monospace;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}
/* --- The above code is AI generated and is designed to mimic my specific Obsidian app look --- */

body {  
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", /* --- AI generated to mimic Obsidian as it looks on my Macbook --- */
                Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
                "Helvetica Neue", sans-serif;
    font-weight: 400;
    color: white;
    background-color: #12161a;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}
nav {
    text-align: center;
}
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
    color: #d2929f;
}
main {
    background-color: #1c2127;
    margin: 100px;
    padding: 0px 50px 20px 50px;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px #070809;
}
.md-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0.5em auto;
}
strong {
    color: #fe83b2;
}
h6 {
    font-size: 1em;
}

@media screen and (max-width: 800px) {
    main {
        margin: 10px;
        padding: 20px;
    }
}