html, body {
  height: 1300px;
}

.grid-container {
  flex: 2px;

  height: 100%;
  width: 100%;
  z-index: 2;
  position: absolute;

  display: flex;
  justify-content: flex-start;
  column-gap: 5%;
}

.textbox-1 {
  width: 900px;
  margin-top: 100px;
  margin-left: 200px;
}

.textbox-2 {
  width: 35%;
  margin-top: 100px;
  margin-right: 200px;
}

.square-figure-1 {
  position: relative;
  z-index: 2;
  background-color: #ffb8e0;
  width: 70px;
  height: 70px;
  opacity: 0;

  float: right;
  margin: -40px;
  animation: elementPopIn 1s ease 1s forwards, elementRotate 8s linear 2s infinite;
}


.scrolling-text-container {
  display: inline-block;
  width: 100%;
  height: 0;
}
.scrolling-text {
  overflow: clip;
  font-size: 8.854vw;
  opacity: 0;
  animation: elementFadeIn 2s ease 1.8s forwards;
}

.scrolling-text-track {
  width: max-content;
  animation: scrolling-text-move 10s linear infinite;

}

@keyframes scrolling-text-move {
  to {
    transform: translateX(-20.285%);
  }
}