body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "proxima-nova-soft", sans-serif;
  -webkit-user-select: none;
  overflow: hidden;
}
body .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
body .vertical-centered-box:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
body .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
* {
  transition: all 0.3s;
}
body {
  background: #2c2d44;
}
#particles-background,
#particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}
#particles-background {
  background: #2c2d44;
  background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.restricted-title {
  position: relative;         /* keeps it inside the content box */
  z-index: 1000;              /* make sure it's above loaders & background */
  color: #ffffff;             /* white text */
  font-size: 2.5rem;          /* big enough */
  font-weight: bold;
  margin: 20px 0;             /* some spacing around */
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgba(255,255,255,0.8); /* glow effect */
}

.logo-container {
  display: flex;
  justify-content: center; /* horizontally center */
  align-items: center;     /* vertically center if needed */
  margin-top: 20px;        /* optional spacing */
}

.logo {
  max-width: 300px;  /* adjust size if needed */
  height: auto;
  display: block;
}


