html, body {
  height: 1800px;
}

.grid-container {
  flex: 2px;

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

  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 2%;
}

.textbox-1, .textbox-2 {
  height: 100%;
  width: 52vw;
}

.textbox-1 {
  margin-top: 100px;
}

.textbox-2 {
  margin-top: -100px;
}
  .video-container {
    margin-top: 5vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 4%;
    width: 100%;
  }

  .video-title {
    margin-top: 20px;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    animation: elementFadeIn 1s ease 1.6s forwards;
  }


.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.25%)
  }
}