.mouse_anim {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.mouse_wheel {
  animation: mouseUpDown 1.2s infinite ease-in-out;
}
@keyframes mouseUpDown {
  0% { cy: 20; }
  50% { cy: 32; }
  100% { cy: 20; }
}
.intro_text_wrap {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  gap: 30px;
}
.intro_text {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}
