html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0px;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cadfe8;
  background: -webkit-linear-gradient(135deg, #a34a01 0%, #654201 100%);
  background: linear-gradient(135deg, #a34a01 0%, #654201 100%);
  background-repeat: no-repeat;
  color: #FFF;
}

.vline {
  position: fixed;
  top: 0;
  left: 50%;
  height: 50vh;
  width: 2px;
  background-color: #FFF;
  z-index: -1;
  opacity: 0.5;
  visibility: hidden;
}

.gsapWrapper {
  visibility: hidden;
}
.gsapWrapper #wBody {
  position: relative;
  aspect-ratio: 1/1;
}
@media (orientation: landscape) {
  .gsapWrapper #wBody {
    width: 65vh;
  }
}
@media (orientation: portrait) {
  .gsapWrapper #wBody {
    height: 65vw;
  }
}
.gsapWrapper #wBody #watch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: visible;
}
.gsapWrapper #wBody #watch svg {
  overflow: visible;
  width: 100%;
  height: 100%;
}