* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background: #111111;
  overflow: hidden;
}

.whiteCircle {
  position: absolute;
  width: 100%;
  top: -150%;
  bottom: -50%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.whiteCircle.whiteColor:before {
  background-color: #fff !important;
}
.whiteCircle:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  background-color: #938983;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transition: all 0.7s;
}

.gandalf {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  bottom: 0;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  transform-origin: center bottom;
}
.gandalf svg {
  height: 50vh;
  width: 50vh;
}
.leftPart {
  transform-origin: 140px 240px;
  transition: all 0.3s;
}
.leftPart.leftPartRotate {
  transform: rotate(14deg);
}

.lightSource {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white;
  filter: blur(4px);
  transform: scale(0);
}

.toBlack:before {
  background-color: #000;
  transition: all 8s;
}

.copywrites {
  position: absolute;
  bottom: 10px;
  left: 9px;
  color: #AEA8D3;
  font-size: 10px;
  font-family: arial;
  text-shadow: 0 0 6px gray;
}
.copywrites a {
  color: inherit;
  font-weight: bold;
}