body {
  background: #f9f8f7;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
  padding: 2rem;
  margin: 0;
  position: relative;
}

h1 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 3rem;
  text-align: left;
  margin-bottom: 2rem;
}

  
     nav {
      text-align: center;
      margin-bottom: 2rem;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-size: 0.95rem;
      letter-spacing: -1.5px;
    }

    nav a:hover {
      text-decoration: underline;
    }
    .arrow {
      font-size: 1rem;
      color: #4b3b82;
      text-decoration: none;
      border: 1px solid #4b3b82;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      transition: all 0.3s ease;
      letter-spacing: -1.5px;
    }
    .arrow:hover {
      background: #4b3b82;
      color: white;
    }
  
footer {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 4rem;
  padding-bottom: 1rem;
}
.draggable {
  position: absolute;
  cursor: grab;
  touch-action: none;
  max-width: 90vw;
  height: auto;
  transition: transform 0.1s ease;
  z-index: 10;
}


