@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");

@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css");

body {
	font-family: "Montserrat", sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
  background-color: #2A3137; 
    margin: 0;
  padding: 0;
}

* {
	font-family: "Montserrat", sans-serif !important;
  box-sizing: content-box;
}

canvas {
    padding: 0;
    margin: auto;
    display: block;
    width: 700px;
    height: 700px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

audio {
opacity: 0.2;
display: flex;
z-index: 10;
position: absolute;
top: 10%;
}

.outer-circle {
  position: absolute;
  height: 700px;
  width: 900px;
  background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
  border-radius: 10%;
  animation: rotate 1.5s linear infinite;
}

.outer-circle span {
  position: absolute;
  height: 700px;
  width: 900px;
  background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
  border-radius: 10%;
}

span:nth-child(1) {
  filter: blur(5px);
}

span:nth-child(2) {
  filter: blur(10px);
}

span:nth-child(3) {
  filter: blur(25px);
}

span:nth-child(4) {
  filter: blur(150px);
}

.inner-circle {
  height: 680px;
  width: 880px;
  position: absolute;
  background: black;
  top: 10px;
  left: 10px;
  border-radius: 10%;
  z-index: 9;
}

@keyframes rotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}