/*-- Used to center ball and set column height --*/
.bg-ball {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  height: 400px;
  z-index: 1;
}

#ball {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: red;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bi {
  font-size: 3rem;
}
/*# sourceMappingURL=style.css.map */