/*
	===============================
			@Import	Function
	===============================
*/
/*
	===============================
			@Import	Mixins
	===============================
*/

:root {
  --effect: hover 1s linear infinite;
}
pl {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 4em;
  font-family: arial;
  font-weight: 600;
  transform: scale(.5);
  color: #121212;
  -webkit-text-stroke: 2px gray;
}

pl:nth-child(1) {
  animation: var(--effect);
}

pl:nth-child(2) {
  animation: var(--effect) .125s;
}

pl:nth-child(3) {
  animation: var(--effect) .25s;
}

pl:nth-child(4) {
  animation: var(--effect) .375s;
}

pl:nth-child(5) {
  animation: var(--effect) .5s;
}

pl:nth-child(6) {
  animation: var(--effect) .675s;
}

pl:nth-child(7) {
  animation: var(--effect) .75s;
}

@keyframes hover {
  0% {
    transform: scale(.5);
    color: #121212;
    -webkit-text-stroke: 2px gray;
  }

  20% {
    transform: scale(1);
    color: pink;
    -webkit-text-stroke: 3px red;
    filter: drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 3px red)drop-shadow(0 0 5px red)hue-rotate(10turn);
  }

  50% {
    transform: scale(.5);
    color: #121212;
    -webkit-text-stroke: 2px gray;
  }


}


div#load_screen {
  background: #000;
  opacity: 1;
  position: fixed;
  z-index: 999999;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%; }
  div#load_screen .loader {
    display: flex;
    justify-content: center;
    height: 100vh; }
  div#load_screen .loader-content {
    right: 0;
    align-self: center; }

.spinner-grow {
  color: #304aca; }
