*,
*::before,
*::after {
  box-sizing: border-box;
}


html,
body {
  color: white;
  background-color: black;
  font-family: serif;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.loadingcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  height: 100vh;
}

.loadingdiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
}

.loadingdiv img {
  width: 150px;
  animation: pulseGlow 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transform: translateZ(0); 
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 1vw rgba(255, 255, 255, 0.2))
      drop-shadow(0 0 1vw rgba(255, 255, 255, 0.1));
  }
  50% {
    transform: scale(1.05);
    filter:
      drop-shadow(0 0 3vw rgba(255, 255, 255, 0.7))
      drop-shadow(0 0 3vw rgba(255, 255, 255, 0.4));
  }
  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 1vw rgba(255, 255, 255, 0.2))
      drop-shadow(0 0 1vw rgba(255, 255, 255, 0.1));
  }
}

.everythingelse {
  padding: 1vw;
  display: none;
}

.logos {
  position:absolute;
  display: flex;
  width: 100vw;
  padding: min(50px, 5vw);
  justify-content: center;
}
.logos img {
  width: max(7vw, 150px);
  aspect-ratio: 1/1;
  animation: pulseGlow 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transform: translateZ(0); 
}
.logos h1 {
  font-weight: lighter;
  font-size: max(5vw, 2rem);
}

.centercontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}