  h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    margin: 1rem 0;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 10px white;
  }
  
  h1 a {
    color: inherit; 
  }
  
  a {
    color: #ffffff;
  }
  
  a:hover, .close-button:hover {
      color: #ffffff;
      transition: color 0.5s;
      text-shadow: 0 0 10px rgb(100, 113, 184), 0 0 20px rgb(255, 255, 255);
    }  
  
  hr {
    border: none;
    border-top: 0.5px solid lightgray;
    box-shadow: 0 0 10px white;
  }
    
  header {
    display: block;
  }
  
  .menu ul li a, header .action { 
    display: block;
    align-self: flex-end; 
    margin: 1.5rem 0 1.5rem 0;
    cursor: pointer; 
  } 
  
  .content > header h1 {
    flex: auto;
    margin: 1rem 0 0.25rem 0;
  }
  
  .post > header .action {
    display: flex;
    align-items: flex-end;  
    font-size: 0.85em;
    float: right;
  }
  
  .post > header > div:first-of-type {
    flex: auto;
  }
  
  .post > header h1 {
    font-size: 1.5em;
    margin-bottom: 0;
  }
  
  .post .body h1 {
    font-size: 1.5em;
  }
  
  .post .about {
    color: slategray;
    /* margin: 10px, 0; */
  }
  
  .post .body {
    white-space: pre-line;
  }
  
  .post .body p, .post .body h1 {
    margin: 0;
  }
  
  .content:last-child {
    margin-bottom: 10px;
  }
  
  .content form {
    margin: 1em 0;
    display: flex;
    flex-direction: column;
  }
  
  .content label {
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  
  .content input, .content textarea {
    margin-bottom: 2em;
    background-color: #0000004b;
    color: #ffffff;
    letter-spacing: 0.1rem;
  }
  
  .content textarea {
    min-height: 50em;
    overflow-y: auto; /* Hide scrollbar */
    resize: none; /* Disable manual resize */
    padding: 1%;
    align-items: flex-start; 
    flex-grow: 1;
    height: auto;
    line-height: 1.5em;
    letter-spacing: 0rem;
    padding:15px;
    font-size: large;
  }

  textarea, select, #title {
    border: 2px solid #ccc;
    border-radius: 4px;
    margin: 8px 0;
    padding: 10px;
    width: 100%; 
    box-sizing: border-box;
    transition: border-color 0.3s ease;  
  }