@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wiggle {
  0% {
    transform: translateX(-1rem);
  }
  33% {
    transform: translateY(1rem);
  }
  66% {
    transform: translateX(1rem);
  }
  100% {
    transform: translateY(-1rem);
  }
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0px;
}

div.staticMovement {
  animation: wiggle linear 0.4s infinite;
}

div.static {
  position: absolute;
  left: -50%;
  top: -200%;
  
  width: 200%;
  height: 500%;
  background-color: black;
  background-image: radial-gradient(rgba(0, 0, 0, 0.5) 2%, transparent 50%), radial-gradient(rgba(100, 100, 100, 0.5) 2%, transparent 50%);
  background-position: 0 0 , 6px 7px;
  background-size: 8px 8px;
}

h1.headder {
  background-color: rgba(0, 0, 0, 0.30);
  padding-left: 2rem;
  padding-right: 2rem;
  color: rgb(220, 220, 220);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: strong;
  font-size: 10rem;
  position: absolute;
  top: 1rem;
}

div.circle {
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  position: absolute;
}

div.solid {
  border: 0.5rem solid rgb(220, 220, 220);
}

div.dashed {
  border: 0.5rem dashed rgb(220, 220, 220);
}

div.dotted {
  border: 0.5rem dotted rgb(220, 220, 220);
}

div.one {
  right: 5rem;
  bottom: 10rem;
}

div.two {
  right: 12.5rem;
  bottom: 7.5rem;
}

div.three {
  width: 10rem;
  height: 10rem;
  right: -5rem;
  bottom: -2rem;
}

div.four {
  width: 10rem;
  height: 10rem;
  left: -5rem;
  bottom: -5rem;
}

div.footer {
  background-color: rgb(10, 10, 10);
  position: absolute;
  bottom: 0rem;
  width: 100%;
  height: 3rem;
}

div.colorInverterCircle {
  position: absolute;
  border-radius: 100%;
  height: 30rem;
  width: 30rem;
  border: solid 1px rgb(10, 10, 10);
  left: -15.5rem;
  top: -1rem;
  
  backdrop-filter: invert(100%);
}








:root {
  --geoGreen: rgb(174, 199, 5);
  --geoBlue: rgb(0, 57, 82);
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

div.spinner {
  position: absolute;
  right: -20rem;
  top: -20rem;
  width: 40rem;
}

div.backSpinner {
  width: 40rem;
  height: 40rem;
  background: linear-gradient(to right, var(--geoGreen), var(--geoBlue));
  border: 0.5rem solid rgb(10, 10, 10);
  border-radius: 100%;
  animation: rotation 3s linear infinite;
}




div.a1Wrapper {
  position: absolute;
  right: -160rem;
  top: 15.5rem;
}

div.a1Circle {
  position: relative;
  top: -10rem;
  left: -10rem;
  border-radius: 100%;
  width: 240rem;
  height: 120rem;
  
  backdrop-filter: invert(100%);
}

div.a1InnerCircle {
  position: relative;
  left: 10rem;
  top: -120rem;
  border-radius: 100%;
  width: 140rem;
  height: 80rem;
  
  backdrop-filter: invert(100%);
}