.homePage {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  gap: 1rem;
  position: relative;
}

.homePage > .titleSection {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homePage > .titleSection > img {
  width: 20rem;
  height: 20rem;
  margin: 0 auto;
}
.homePage > .titleSection > .title {
  margin-top: -0.25rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-2);
  max-width: 37.5rem;
}

.homePage > .titleSection > .title > span {
  color: transparent;
  background: white;
  background-clip: text;
  background-image: linear-gradient(to top, var(--accent-border), var(--accent-text))
}

.homePage > .titleSection > .scrollingDemo {
  margin-top: 3rem;
  width: 100%;
  height: 13rem;
  position: relative;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 13rem;
  width: 77.5rem;
  overflow: hidden;
}

.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper:after {
  inset: 0;
  position: absolute;
  content: "";
  background: linear-gradient(to right, var(--bg-1), transparent 15%, transparent 85%, var(--bg-1))
}


.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild {
  position: absolute;
  top: 0;
  left: 50%;
  height: 13rem;
  width: 15rem;
  margin: 0 0.25rem;
  border-radius: 0.75rem;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild > .image {
  width: 100%;
  aspect-ratio: 16/10;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild > .name {
  color: var(--text-1);
  font-weight: 500;
  margin: 0.5rem 0.625rem .5rem 0.625rem;
  font-size: 1.125rem;
}

.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild:nth-child(1) {
  animation: demoBuild-1 30s linear infinite;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild:nth-child(2) {
  animation: demoBuild-2 30s linear infinite;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild:nth-child(3) {
  animation: demoBuild-3 30s linear infinite;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild:nth-child(4) {
  animation: demoBuild-4 30s linear infinite;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild:nth-child(5) {
  animation: demoBuild-5 30s linear infinite;
}
.homePage > .titleSection > .scrollingDemo > .scrollingDemoWrapper > .demoBuild:nth-child(6) {
  animation: demoBuild-6 30s linear infinite;
}



@keyframes demoBuild-1 {
  0% {left: 0;}
  16.666666% {left: -15.5rem}
  16.666667% {left: 77.5rem}
  100% {left: 0;}
}
@keyframes demoBuild-2 {
  0% {left: 15.5rem;}
  33.333333% {left: -15.5rem}
  33.333334% {left: 77.5rem}
  100% {left: 15.5rem;}
}
@keyframes demoBuild-3 {
  0% {left: 31rem;}
  50% {left: -15.5rem}
  50.000001% {left: 77.5rem}
  100% {left: 31rem;}
}
@keyframes demoBuild-4 {
  0% {left: 46.5rem;}
  66.666666% {left: -15.5rem}
  66.666667% {left: 77.5rem}
  100% {left: 46.5rem;}
}
@keyframes demoBuild-5 {
  0% {left: 62rem;}
  83.333333% {left: -15.5rem}
  83.333334% {left: 77.5rem}
  100% {left: 62rem;}
}
@keyframes demoBuild-6 {
  0% {left: 77.5rem;}
  100% {left: -15.5rem;}
}