.sitemap h1 {
      text-align: center;
      margin-bottom: 50px;
      color: var(--text-color);
      font-family: var(--font-heading);
      font-size: var(--h2-size);
      text-transform: uppercase;
    }

    .sitemap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .box {
      padding: 10px 20px;
      border-radius: .2rem;
      background-color: var(--text-color);
      text-align: center;
      min-width: 140px;
      box-shadow: var(--box-shadow);
      font-weight: 600;
      position: relative;
      border: none;
      padding: 12px 30px;
      cursor: pointer;
      font-family: var(--font-heading);
    }

    .box.homepage {
      background: var(--accent);
      color: var(--text-color);
      font-weight: bold;
      border: none;
    }

    .box.nav {
      background: var(--accent);
      color: var(--text-color);
    }

    .box.page {
      background: var(--extra-background-6);
      color: var(--text-color);
    }

    .box.post {
      background: var(--text-color);
      color: var(--background-color);
    }

    .level {
      display: flex;
      gap: 40px;
      margin: 30px 0;
      justify-content: center;
      flex-wrap: wrap;
    }

    .line {
      width: 2px;
      height: 20px;
      background: #ccc;
      margin: auto;
    }

    .connector {
      height: 20px;
      width: 100%;
      border-bottom: 2px solid #ccc;
      position: relative;
      top: -10px;
    }

    .column {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    @media (max-width: 768px) {
     
    }