@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

:root {
  --cb: #020202;
  --grad: radial-gradient( circle farthest-corner at 1.3% 2.8%,  rgba(239,249,249,1) 0%, rgba(182,199,226,1) 100.2% );
}

* {
  font-family: monospace;
  margin: 0;
  padding: 0;
}

body {
  /* @credits: meth.cat */
  background: url(/assets/images/bg.gif) no-repeat var(--cb);
  background-attachment: fixed;
  background-position: bottom;
  color: #ecf0f1;
}

img {
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -moz-crisp-edges;
      image-rendering: pixelated;
}

pre {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100dvh;
  -webkit-animation: fade-in 2s ease-in-out;
          animation: fade-in 2s ease-in-out;
}

.container__image {
  text-align: center;
  /* pointer-events: none; */
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: manipulation;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.8rem;
  transition: opacity 0.2s ease-in-out;
}

#title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container_inner {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container_inner__links ul {
  list-style-type: none;
  display: inline;
}

.container_inner__links > li {
  display: inline;
  margin: 0 10px;
}

.container_inner__links > li > a {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}

.container_inner__links > li > a:hover {
  letter-spacing: 1.5px;
}

.container_bottom {
  position: absolute;
  bottom: 0;
  right: 10px;
  text-align: right;
}

@media (max-width: 768px) {
  .container_inner__links {
    margin-top: 20px;
  }

  .container_bottom {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  #banners {
    display: none;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--cb);

  overflow: hidden;

  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  transition: opacity 0.1s ease-in-out;
}

.hidden {
  opacity: 0;
}

#preloader pre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;

  background-image: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}