div#argon_landing {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* background-image: url(/assets/svg/ellipses.svg);
  animation: argon_landing_gradient 50s infinite; */
  background-image: url(/assets/images/neuron_bg_dark.png);
  background-size: 100% 100%;
}

div#argon_landing.dark {
  background-color: #081027;
}

/* div#argon_landing .acrylic { */
  /* width: 100%;
  height: 100%;
  position: relative;
  background-color: #ffffff8c;
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%); */
/* } */

/* div#argon_landing.dark .acrylic {
  background-color: #081027e0;
} */

/* div#argon_landing .laser { */
  /* width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mask-image: url(assets/svg/lasers.svg);
  mask-size: cover;
  background-image: url(/assets/svg/ellipses.svg);
  animation: argon_landing_gradient 30s infinite;
  background-color: #ffffff; */
/* } */

/* div#argon_landing.dark .laser {
  background-color: #000000;
} */

div#argon_landing .logo-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}

div#argon_landing .logo-wrapper {
  width: 10%;
  max-width: 256px;
  position: relative;
  display: inline-block;
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 24px 3px rgba(43, 33, 164, 0.5);
  -moz-box-shadow: 0px 0px 24px 3px rgba(43, 33, 164, 0.5);
  box-shadow: 0px 0px 24px 3px rgba(43, 33, 164, 0.5);
}

div#argon_landing .dummy {
  margin-top: 100%;
}

div#argon_landing .logo {
  
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  backdrop-filter: blur(10px) saturate(180%);
  background-color: #ffffffcf;
  border-radius: 50%;
}

div#argon_landing.dark .logo {
  border: 5px solid #000000;
  background-color: rgba(77, 77, 96, 0.2);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
}

div#argon_landing .logo .logo-img {
  width: 100%;
  height: 100%;
}

div#argon_landing .logo .logo-img img {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  position: absolute;
}

div#argon_landing .logo-spinner {
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
  background-color: transparent;
  -webkit-animation: argon_landing_rotating 2s linear infinite;
  -moz-animation: argon_landing_rotating 2s linear infinite;
  -ms-animation: argon_landing_rotating 2s linear infinite;
  -o-animation: argon_landing_rotating 2s linear infinite;
  animation: argon_landing_rotating 2s linear infinite;
}

div#argon_landing .logo-spinner svg{
  stroke: currentColor;
  fill: none;
}

@keyframes argon_landing_gradient {
	0% {
		background-position: 50% 50%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 50% 50%;
	}
}

@keyframes argon_landing_rotating {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    color: rgb(113, 96, 251);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    color: rgb(5, 251, 252);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    color: rgb(113, 96, 251);
  }
}
