/* Home-2 — endless animation loop, no products, no menu */

body {
  overflow: hidden;
}

.home-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.home-animation__svg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-animation__logo {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 20vw;
  transform: translate(-50%, -50%);
  color: currentColor;
  z-index: 15;
}

.home-animation__logo svg {
  display: block;
  width: 100%;
}

.home-animation__logo svg path,
.home-animation__logo svg text,
.home-animation__logo svg polygon,
.home-animation__logo svg circle,
.home-animation__logo svg ellipse {
  fill: currentColor !important;
}

.home-animation__logo svg rect {
  fill: none !important;
  stroke: currentColor;
}

@media only screen and (max-width: 800px) {
  .home-animation__logo {
    width: 60vw;
  }
}
