:root {
  --selective-yellow: rgb(251, 175, 0);
  --cornell-red: rgb(184, 0, 28);
  --duke-blue: rgb(57, 0, 153);
  --honolulu-blue: rgb(0, 124, 190);
  --pigment-green: rgb(0, 175, 84);
}

*{
    font-family: 'League Spartan','Arial';
    box-sizing: border-box;
}

html {
  scrollbar-color: rgb(16, 16, 16, 0.6) var(--cornell-red);
  scrollbar-width: thin;
}

body {
  background-color: rgb(16, 16, 16);
  margin: 0;
  position: relative;
  overflow-x: hidden;
  margin-top: 80px;
}

/*spinning elements*/
.spinning-circle {
  position: fixed;
  border-radius: 100%;
  z-index: -1;
}

.spinning-square-wrapper {
  position: fixed;
  height: fit-content;
  width: fit-content;
  z-index: -1;
}

.spinning-wrapper {
  position: fixed;
  height: fit-content;
  width: fit-content;
  z-index: -1;
}

.spinning-circle-square {
  z-index: -1;
}

@media (prefers-reduced-motion) {
* {
    animation-duration: 0s !important;
    animation-iteration-count: 0;
  }
}