* {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background: #000;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
}
.content #particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content svg {
  width: 0vmin;
  height: 0vmin;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.content svg path {
  fill: #fff;
}
.content h1 {
  opacity: 0;
  font-size: clamp(2vmin, 5vw, 10vmin);
  transform: translateY(-5dvmin);
}

.case {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  pointer-events: none;
  z-index: 1;
}
.case .start,
.case .end {
  overflow: hidden;
}
.case img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case .end img {
  left: auto;
  right: 0;
}/*# sourceMappingURL=styles.css.map */