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;
      }
      #events-list {
          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; }
      .event-meta {
          font-style: italic;
          color: #888;
          margin-bottom: 20px;
      }
      .event-item {
          display: flex;
          flex-direction: column;
          margin-bottom: 40px;
          border-bottom: 1px solid #222;
          padding-bottom: 20px;
      }
      @media (min-width: 600px) {
          .event-item {
              flex-direction: row;
              gap: 20px;
          }
      }
      .event-image {
          flex: 0 0 300px;
      }
      .event-image img {
          width: 100%;
          border-radius: 5px;
      }
      .event-content {
          flex: 1;
      }
      .bottom-links {
          margin-top: 40px;
          display: flex;
          justify-content: center;
          gap: 20px;
          width: 100%;
          max-width: 55ch;
      }
      .event-content h3 {
          margin-top: 0;
      }
      .btn {
          display: inline-block;
          border: none;
          border-radius: 20px;
          padding: 10px 20px;
          background-color: white;
          text-decoration: none;
          color: black;
          cursor: pointer;
          transition: background-color 200ms ease-in-out;
          text-align: center;
          margin-top: 20px;
          margin-bottom: 20px;
      }
      .btn:hover {
          background-color: rgb(213, 213, 213);
      }

      #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);
}
