.splashBackground {
  margin: auto;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background: linear-gradient(180deg, #292929 0%, #1e1e1e 100%);
  display: flex;
  gap: 23px;
  flex-flow: column nowrap;
  place-content: center space-between;
  padding-top: 60px;
  padding-bottom: 40px;
  box-sizing: border-box;
  align-items: center;
}

.gameName {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-primary, #fff);
  text-align: center;
  font-family: Inter, serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.99px;
}

.bottomBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 47px;
}

.bottomText {
  color: var(--text-uninvertible-white, #fff);
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.195px;
}

.loader,
.loader::before,
.loader::after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation: bbl-fad-in-out 1.8s infinite ease-in-out;
  animation-fill-mode: both;
}

.loader {
  display: block;
  color: #fff;
  font-size: 4px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  top: 0;
}

.loader::before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader::after {
  left: 3.5em;
}
@keyframes bbl-fad-in-out {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

body {
  padding: 0;
  border: 0;
  margin: 0;
}
