.tree-container {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.tree {
  display: grid;
  gap: 20px;

  grid-template-rows: repeat(
    auto,
    minmax(0, 1fr)
  ); /* Each row takes an equal portion of the available height */
  grid-template-columns: repeat(
    3,
    1fr
  ); /* Each column takes an equal portion of the available width */
}
.skill-container {
  position: relative;
  /* // z-index: 1; */
  background: var(--neutral);
  margin: auto;
  padding: 5px;
}

.skill-point {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  bottom: 0;
  right: 0;
  background: var(--color-base-200);
}

.svg {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  path {
    stroke: var(--color-base-100);
    stroke-width: 10px;
    stroke-linejoin: bevel;
    stroke-linecap: round;
    /* // stroke-dasharray: 1px, 15px;
    // fill: oklch(var(--a)); */
    &.active {
      stroke: var(--color-secondary);
      stroke-dashoffset: 500;
      stroke-dasharray: 500;
      animation: draw 5s linear forwards;
      animation-delay: var(--delay);
    }
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.skills-menu {
  display: flex;

  & > div {
    flex: 1;
    height: 50px;
    width: 50px;
    border: 1px solid red;
  }
}
/* 
// .skills {
//   // display: flex;
//   // transition: all 1s ease;
//   // justify-content: center;
//   // align-items: center;
//   height: 100px;
//   // animation: grow 1s linear 1 forwards;
// }

// @keyframes grow {
//   0% {
//     // height: 100px;
//   }
//   100% {
//     height: 100px;
//   }
// } */

