@font-face {
  font-family: 'Kumbh Sans';
  src: url('font/KumbhSans-Medium.woff2') format('woff2'),
      url('font/KumbhSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #040404;
  font-family: 'Kumbh Sans'; font-weight: 500; font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

#centerer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  width: 480px;
  height: 480px;
  display: block;
  position: absolute;
}

#gradientCircle {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background-color: transparent;
  filter: blur(42px);
  perspective: 100px;
  animation: roam infinite ease-in-out;
  animation-duration: 60s;
}

@keyframes roam {
  0% { transform: rotateX(6deg); transform: skewY(0deg);}
  25% { transform: skewY(6deg); }
  50%{ transform: skewX(-6deg); }
  75% { transform: skewY(-6deg); }
  100%{ transform: skewX(6deg); transform: skewY(0deg);}
}

#blackoutCircle {
  position: absolute;
  top: 90px;
  left: 90px;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: black;
  filter: blur(12px);
}

#locale {
  font-family: 'Kumbh Sans'; font-weight: 500; font-style: normal;
  position: fixed;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, 0%);
  color: white;
  font-size: 150%;
  text-align: center;
  letter-spacing: 4px;
}