.loading {
  position: absolute;
  background-color: var(--lightBg);
  height: 100vh;
  width: 100vw;
  z-index: 1031;
  animation: fadeOut .5s linear 1s forwards;
}

.loading img {
  width: 10rem;
}

.loading .gold-underline {
  position: absolute;
}

.loading .gold-underline:after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: var(--lightBg);
  animation: outRight .5s ease forwards;
}

.loading .gold-underline:before {
  position: absolute;
  content: "";
  inset: 0;
  transform: translateX(-100%);
  background-color: var(--lightBg);
  animation: inRight .5s ease .5s forwards;
}
