@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:400,700");
.training-callout {
  color: black;
  border: 1px solid lightgray;
  border-radius: 10px;
  width: fit-content;
  padding: 15px 10px;
  background-color: white;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Oswald", sans-serif;
}

:root {
  --white: hsl(0, 100%, 100%); /*#FFFFFF*/
  --off-white: hsla(0, 0%, 100%, 0.533); /*#FFFFFF88*/
  --black: hsl(0, 0%, 0%); /*#000000*/
  --dark-background-2: hsl(0, 0%, 21%); /*#353535*/
  --dark-background: hsl(228, 7%, 14%); /*#212226*/
  --background: hsl(206, 45%, 12%); /*#11212D*/
  --dark-background-111: hsl(0, 0%, 7%); /*#111111*/
  --dark-background-222: hsl(0, 0%, 13%); /*#222222*/
  --glassmorphism-background: hsl(257, 43%, 31%);
  --footerBackground: hsl(216, 100%, 60%);
  --buttonsBackground: hsl(205, 43%, 16%);
  --green: hsl(132, 99%, 58%);
  --circularbg2: hsl(54, 100%, 62%);
  --section-background: hsl(240, 23%, 11%);
  --menu-marker-bg-color: hsl(213, 100%, 68%);
  --menu-marker-bg-color-darker: hsl(213, 46%, 40%);
  --menu-background-color: hsl(0, 0%, 18%); /*#2e2e2e*/
  --darkmode-text: hsl(0, 0%, 87%); /*#dedede  #dddddd*/
  --light-grey: hsl(0, 0%, 47%); /*#787878*/
  --med-light-grey: hsl(0, 0%, 33%); /*#545454*/
  --med-grey: hsl(0, 0%, 20%); /*#333*/
  --dark-grey: hsl(0, 0%, 19%); /*#303030*/
  --pink: hsl(339, 100%, 62%);
  --red: hsl(0, 100%, 50%);
  --light-switch-border: hsl(0, 0%, 93%); /*#eee*/
  --light-switch-border-dark: hsl(0, 0%, 80%); /*#ccc*/
  --light-switch-dark: hsl(0, 0%, 47%); /*#777777*/
  --creative-text-border-color: hsl(228, 19%, 27%); /*#383d52*/
  --card-hover-background: hsl(234, 24%, 23%); /*#2C2F48*/
  --radial-background: hsl(212, 14%, 21%); /*#2f363e*/
  --services-design: hsl(206, 62%, 54%);
  --services-development: hsl(324, 89%, 64%);
  --services-search: hsl(120, 70%, 68%);
  --services-analytics: hsl(51, 75%, 54%);
  --services-video: hsl(120, 34%, 39%);
  --services-games: hsl(300, 43%, 51%);
  --responsive-bar-background: hsl(200, 18%, 46%) /*#607d8b*/;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

body {
  background-color: #eeeeea;
}

.spinner-container {
  perspective: 800px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-shadow {
  width: 270px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translate(-54%, 13%);
  filter: blur(10px);
  opacity: 0.8;
  animation: shadowHue 6s linear infinite;
}

.spinner-wrapper {
  display: inline-block;
  position: relative;
  width: 3rem;
  height: 3rem;
  z-index: 10;
  animation: spin3D 6s linear infinite reverse;
}

.side {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

.front {
  transform: translateZ(2px);
}

.back {
  transform: rotateY(180deg) translateZ(2px);
}

.edge {
  position: absolute;
  background: #ccc;
  width: 3rem;
  height: 3rem;
  transform-style: preserve-3d;
  border-radius: 50%;
}

.right {
  transform: rotateY(90deg) translateZ(1.5rem);
}

.left {
  transform: rotateY(-90deg) translateZ(1.5rem);
}

.top {
  transform: rotateX(90deg) translateZ(1.5rem);
}

.bottom {
  transform: rotateX(-90deg) translateZ(1.5rem);
}

@keyframes spin3D {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shadowHue {
  0% {
    background: rgba(255, 0, 0, 0.5);
  }
  33% {
    background: rgba(0, 0, 0, 0.4);
  }
  66% {
    background: rgba(205, 246, 0, 0.817);
  }
  100% {
    background: rgba(255, 0, 0, 0.5);
  }
}/*# sourceMappingURL=spinning-icon.css.map */