.loading1 {
  animation: rotation 1s infinite linear;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: rgba(255, 255, 255, 0.7);
  height: 70px;
  width: 70px;
}

@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}

/* Extra junk */


.loading {
  animation: bgTransition 20s infinite linear;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999999999999999999999999999999999999999999;
  overflow: hidden;
}

.loading1 {
  margin: auto;
}

@keyframes bgTransition {
  0% {
    background-color: #5BB0E4;
  }
  
  33% {
    background-color: #214899;
  }
  
  66% {
    background-color: #B2DBF3;
  }
  
  100% {
    background-color: #7CC2ED;
  }
}