html,
body {
  height: 100%;
}

body {
  background-color: #1d1d1d;
  font-family: 'Signika Negative', sans-serif;
  color: #989898;
  margin: 0 10px;
  font-size: 17px;
  text-align: center;
}
.all-gsap-effects {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#motionPath {
  overflow: visible;
  height: 100%;
  max-width: 100%;
}

#motionPath path {
  stroke-width: 2;
  stroke: gray;
}

#box {
  width: 100px;
  height: 100px;
  background-color: rgba(136, 206, 2, 0.6);
  border: 2px solid white;
  position: absolute;
  top: 0;
  left: 0;
}
.see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid;
  position: absolute;
  cursor: pointer;
  left: 20px;
  top: 20px;
  z-index: 10;
  text-decoration: none;
  color: wheat;
}
