body {
            margin: 0;
            
            background-color: black;
            color: rgb(192, 192, 192);
            min-height: 100vh;
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            flex-direction: column;
            align-items: center;
            padding: 5vh 0 10vh;
            overflow-x: hidden;
        }
        h1{
            margin: 0;
            line-height: 0;
        }
        h1, h2, h3 {
            font-weight: 100;
            color: rgb(192, 192, 192);
        }
       .bottom-links {
          margin-top: 40px;
          display: flex;
          justify-content: flex-start;
          gap: 20px;
          width: 100%;
          max-width: 55ch;
      }
        
        .content {
            max-width: 55ch;
            padding: 0 20px;
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            text-align: left;
        }
        .content p {
            margin-bottom: 1em;
        }
        .content a {
            color: rgb(192, 192, 192);
            text-decoration: none;
        }
      .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;
          font-family: Arial, Helvetica, sans-serif;
      }
      .btn:hover {
          background-color: rgb(192, 192, 192);
          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);
}
