/* src/css/splash.css */
@font-face {
  font-family: "mexemlogoregular";
  src:
    url(./mexemfont-webfont-DKKIMGY4.woff2) format("woff2"),
    url(./mexemfont-webfont-GCNGZXW6.woff) format("woff"),
    url(./mexemfont-webfont-R2LVGTCI.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

.splash-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  letter-spacing: 25px;
  overflow: hidden;
  font-family: "mexemlogoregular" !important;

  position: fixed;
  top: 0px;
  left: 0px;
}
.splash-container .glow {
  filter: drop-shadow(0 0 2rem rgba(81, 170, 243, 0.9));
  animation: flicker 10s;
  animation-fill-mode: forwards;
}
.splash-container .logo {
  padding: 30px;
  max-height: 60%;
  grid-column: 1/3;
  grid-row: 1/3;
  filter: drop-shadow(0 0 2rem rgba(81, 170, 243, 0.9));
  z-index: 1;
}
.splash-container .title {
  padding: 30px;
  grid-column: 1/3;
  grid-row: 1/3;
  font-size: clamp(30px, 10vw, 120px);
  font-family: "mexemlogoregular" !important;
  margin-left: 37px;
  color: white;
  z-index: 3;
  font-kerning: none;
}
.splash-container .bg {
  grid-column: 1/3;
  grid-row: 1/3;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-45deg, #012685, #062e92, #012172, #0d38a4);
  background-size: 400% 400%;
  animation: gradient 20s ease infinite;
  height: 100vh;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes flicker {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.7;
  }
  30% {
    opacity: 0.45;
  }
  35% {
    opacity: 0.6;
  }
  40% {
    opacity: 0.45;
  }
  45% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.45;
  }
  70% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.45;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
