.ct {
  /* background-color: red; */
  margin: 100px auto;
  position: relative;
  width: 300px;
  height: 300px;
  /* background-color: red; */
}

/*Blue big circle and it's diameter coordinates*/
.circle-large {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 100%;
  border: 1px solid #3498db;
  /* background-color: seagreen      ; */
}
.circle-large::before {
  background: #3498db;
  top: 50%;
  width: 299px;
  height: 1px;
  content: "";
  position: absolute;
}
.circle-large::after {
  background: #3498db;
  left: 50%;
  top: 0;
  width: 1px;
  height: 299px;
  content: "";
  position: absolute;
}

/*Smaller, orange, centered circle*/
.circle-small {
  width: 148px;
  height: 148px;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #e67e22;
  position: absolute;
  top: 75px;
  left: 75px;
  z-index: 2;
  animation: counterRotate 8s infinite linear;
}

/*Tiny orange circle that spins on circle-small's side*/
.bullseye {
  width: 11px;
  height: 11px;
  border: 1px solid #e67e22;
  background-color: #e67e22;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  margin-top: -6px;
  animation: rotate 4s infinite linear;
}
.bullseye::before {
  width: 149px;
  height: 149px;
  left: -71px;
  top: -71px;
  border-radius: 100%;
  border: 1px solid #7f8c8d;
  content: "";
  position: absolute;
}

.axis {
  position: absolute;
  background: #7f8c8d;
  border: 0;
  z-index: 2;
  margin: 0;
}
.axis.horizontal {
  top: 4px;
  left: -145px;
  width: 300px;
  height: 1px;
}
.axis.vertical {
  top: -145px;
  left: 4px;
  height: 300px;
  width: 1px;
}

.axis::before,
.axis::after {
  width: 9px;
  height: 9px;
  background: #7f8c8d;
  border-radius: 100%;
  content: "";
  position: absolute;
}
.axis::before {
  top: -4px;
  left: -4px;
  content: "";
  position: absolute;
}
.axis::after {
  bottom: -4px;
  right: -4px;
  content: "";
  position: absolute;
}

.bullet {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  border: 1px solid #8e44ad;
  position: absolute;
  top: 69px;
  left: -5px;
  background-color: #8e44ad;
}
.bullet:nth-child(2) {
  top: 219px;
}

/*Orange ellipses*/

.ellipse {
  border: 1px solid #e67e22;
  position: absolute;
  border-radius: 100%;
  width: 450px;
  height: 150px;
  top: 75px;
  left: -75px;
}
.ellipse:nth-child(3) {
  transform: rotate(45deg);
}
.ellipse:nth-child(4) {
  transform: rotate(90deg);
}
.ellipse:nth-child(5) {
  transform: rotate(135deg);
}

@keyframes counterRotate {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.circle {
  height: 14px;
  width: 14px;
  border-radius: 24px;
  background-color: black;
  position: fixed;
  top: -150px;
  left: -150px;
  /* pointer-events: none; */
  z-index: 99999999; /* so that it stays on top of all other elements */
}

.text-animation {
  opacity: 0;
  color: #c6ea8d;
}

.text-animation span {
  position: relative;
  top: 10px;
  left: 10px;
  opacity: 0;
  animation: fade 400ms ease-in-out forwards;
}

@keyframes fade {
  0% {
    top: 10px;
    left: 10px;
    /* filter: blur(15px); */
    opacity: 0;
  }

  50% {
    /* filter: blur(10px); */
    opacity: 0.9;
  }

  100% {
    top: 0px;
    left: 0px;
    /* filter: blur(0px); */
    opacity: 1;
  }
}

.text-animation2 {
  /* margin-top: 13px;
  font-size: 33px; */
  /* color: #d9d3bc; */
  color: white;
  font-weight: bold;
}

@keyframes fadeIn {
  0% {
    color: transparent;
  }

  100% {
    color: whitesmoke;
  }
}
