html {
  --color-6: #10004e;
  --dashed: 0.08rem;
  --margin-home-boxes: 5px;
}

.container {
  position: fixed; /* Keep it fixed in place */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10; /* Move the container behind the rest of the content */
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Keep this if you don't want interactions */
}

.box {
  position: absolute;
  z-index: 1000;
  border: var(--dashed) dashed var(--color-6);
  margin: var(--margin-home-boxes);
  /* Ellipse positioning */
}
.box.bottom-left, .box.bottom-right, .box.top-left, .box.top-right {
  margin: 0;
  width: calc(50dvw - 1 * var(--margin-home-boxes));
  height: calc(50dvh - 1 * var(--margin-home-boxes));
}
.box.bottom-left {
  top: calc(50% + var(--dashed));
  left: calc(1 * var(--margin-home-boxes));
  border-bottom: none;
  border-left: none;
  border-radius: 0 100% 0 0;
}
.box.bottom-right {
  top: calc(50% + var(--dashed));
  left: 50%;
  border-bottom: none;
  border-right: none;
  border-radius: 100% 0 0 0;
}
.box.top-left {
  bottom: calc(50% - var(--dashed));
  left: calc(1 * var(--margin-home-boxes));
  border-top: none;
  border-left: none;
  border-radius: 0 0 100% 0;
}
.box.top-right {
  bottom: calc(50% - var(--dashed));
  left: 50%;
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 100%;
}
.box.ellipse, .box.ellipse-top, .box.ellipse-bottom {
  margin: 0;
  /* Remove margin for ellipses */
  width: calc(100vw - 10 * var(--margin-home-boxes));
  height: calc(100vh - 10 * var(--margin-home-boxes));
  border-radius: 100%;
}
.box.ellipse-top {
  top: calc(-50vh + 10 * var(--margin-home-boxes) + var(--dashed));
}
.box.ellipse-bottom {
  bottom: calc(-50vh + 10 * var(--margin-home-boxes) - var(--dashed));
}
.box.vertical-lines {
  width: calc(100vw - 10 * var(--margin-home-boxes));
  height: 100vh;
  border-top: none;
  border-bottom: none;
}
.box.horizontal-lines {
  width: 100vw;
  height: calc(100vh - 10 * var(--margin-home-boxes));
  border-left: none;
  border-right: none;
}

.line-horizontal,
.line-vertical {
  position: absolute;
  z-index: 1;
}
.line-horizontal.line-horizontal,
.line-vertical.line-horizontal {
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  border-top: var(--dashed) dashed var(--color-6);
}
.line-horizontal.line-vertical,
.line-vertical.line-vertical {
  width: 0;
  height: 100%;
  top: 0;
  left: 50%;
  border-left: var(--dashed) dashed var(--color-6);
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .box {
    position: absolute;
    z-index: 10;
    width: 100dvw;
    height: 100dvh;
  }
  .box.ellipse-top, .box.ellipse-bottom, .box.mobile-ellipse-1, .box.mobile-ellipse-2, .box.mobile-ellipse-3, .box.mobile-ellipse-4, .box.mobile-ellipse-5, .box.movingfirst {
    display: none;
  }
  .box.vertical-lines {
    border-top: none;
    border-bottom: none;
    top: 0;
    width: calc(100dvw - 10 * var(--margin-home-boxes));
    height: 100dvh;
  }
  .box.horizontal-lines {
    top: calc(5 * var(--margin-home-boxes));
    height: calc(100dvh - 10 * var(--margin-home-boxes));
    border-left: none;
    border-right: none;
  }
  .box.ellipse {
    top: calc(5 * var(--margin-home-boxes) + 5px);
    height: calc(100dvh - 10 * var(--margin-home-boxes));
  }
}
/* Keyframe animations */
@keyframes border-radius-animation {
  0% {
    border-radius: 0%;
  }
  40%, 50% {
    border-radius: 100%;
  }
  100% {
    border-radius: 0%;
  }
}
@keyframes border-radius-animation-top-left {
  0% {
    border-radius: 0 0 0% 0;
  }
  40%, 50% {
    border-radius: 0 0 100% 0;
  }
  100% {
    border-radius: 0 0 0% 0;
  }
}
@keyframes border-radius-animation-top-right {
  0% {
    border-radius: 0 0 0 0%;
  }
  40%, 50% {
    border-radius: 0 0 0 100%;
  }
  100% {
    border-radius: 0 0 0 0%;
  }
}
@keyframes border-radius-animation-bottom-right {
  0% {
    border-radius: 0% 0 0 0;
  }
  40%, 50% {
    border-radius: 100% 0 0 0;
  }
  100% {
    border-radius: 0% 0 0 0;
  }
}
@keyframes border-radius-animation-bottom-left {
  0% {
    border-radius: 0 0% 0 0;
  }
  40%, 50% {
    border-radius: 0 100% 0 0;
  }
  100% {
    border-radius: 0 0% 0 0;
  }
}
@keyframes width-ellipse-movingfirst {
  0% {
    width: 0vw;
  }
  40%, 50% {
    width: calc(100vw - 10 * var(--margin-home-boxes));
  }
  100% {
    width: 0vw;
  }
}
@keyframes width-ellipse-movingsecond {
  0% {
    width: calc(100vw - 10 * var(--margin-home-boxes));
  }
  40%, 50% {
    width: 0vw;
  }
  100% {
    width: calc(100vw - 10 * var(--margin-home-boxes));
  }
}
/* Hide mobile ellipses on desktop screens */
@media (min-width: 768px) {
  .box.mobile-ellipse-1,
  .box.mobile-ellipse-2,
  .box.mobile-ellipse-3,
  .box.mobile-ellipse-4,
  .box.mobile-ellipse-5 {
    display: none; /* Hide mobile ellipses on desktop */
  }
}/*# sourceMappingURL=style.css.map */