body{
    font-family: Arial, Helvetica, sans-serif;  
    background: linear-gradient(#16224d, #8d9cd3 250%);
    background-attachment: fixed;
    color: whitesmoke;
    font-size: 100%;
    line-height: 1.6;
  margin: 0;
  padding: 2rem;
    
  }
  
  html, body {
      height: 100%;
      margin: 0;
      padding: 0rem 0.5rem;
  }
  footer {
    padding: 8px 0;
    text-align: left;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .left-column p {
    border: 2px solid #fff;
    padding: 0.5rem;
    margin-top: -1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .left-column img {
    width: 100%;
    border-radius: 4px;
  }
  
  .right-column {
    flex: 2;
    border: 2px solid #fff;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .right-column h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .meta {
    font-style: italic;
    color: #c0b8a8;
    margin-bottom: 1.5rem;
  }
  
  .right-column p {
    margin-bottom: 1rem;
  }
  /* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
  }
  
  .lightbox-overlay.active {
    display: flex;
  }
  a {
    color: white;
    text-decoration: underline;
  }
  a:visited {
    color: white;
  }
canvas {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }
    @media (max-width: 639px) {
  .container {
    flex-direction: column-reverse;
  }
}