:root {
  --effect: hover 1s linear infinite;
}

* {
  margin: 0;
}


#loading>p {
  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;
}

#loading>p:nth-child(1) {
  animation: var(--effect);
}

#loading>p:nth-child(2) {
  animation: var(--effect) .125s;
}

#loading>p:nth-child(3) {
  animation: var(--effect) .25s;
}

#loading>p:nth-child(4) {
  animation: var(--effect) .375s;
}

#loading>p:nth-child(5) {
  animation: var(--effect) .5s;
}

#loading>p:nth-child(6) {
  animation: var(--effect) .675s;
}

#loading>p: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: #be940a;
    -webkit-text-stroke: 3px gold;
    filter: drop-shadow(0 0 1px #be940a)drop-shadow(0 0 1px #be940a)drop-shadow(0 0 3px #be940a);
  }

  50% {
    transform: scale(.5);
    color: #121212;
    -webkit-text-stroke: 2px gray;
  }


}


.loading {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 35vh 0px 0px 0px;
  z-index: 9999;
  height: 100vh;
  width: 100vw;
  text-align: center;
  display: none;
}

.openloading {
  display: block !important;
}

.loading>img {
  position: relative;
  top: 0%;
  text-align: center;
  margin-top: -100px;
  width: 150px;
}