* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
html,
body {
  height: 100%;

}
body {
  background-color: #000;
}

.display_none {
  display: none !important;
}
.clear {
  clear: both;
}

#pDebug {
  display: none;
}

.wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  color: #FFF;
  font-family: sans-serif;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title-404 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 200px;
  margin-bottom: 50px;
  color: rgba(255,0,0,0.5);
}
.title-404::before,
.title-404::after {
  content: "404";
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  color: rgba(0,255,0,0.5);
  margin-left: 10px;
  margin-top: 10px;
  mix-blend-mode: difference;

  animation-name: anim404Before;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}
.title-404::after {
  color: rgba(0,0,255,0.5);
  margin-left: -10px;
  margin-top: -10px;
  animation-name: anim404After;
}
@keyframes anim404Before {
  0%    {transform: transform: translateX(0px) translateY(0px);}
  50%   {transform: translateX(-20px) translateY(-20px);}
  100%  {transform: transform: translateX(0px) translateY(0px);}
}
@keyframes anim404After {
  0%    {transform: transform: translateX(0px) translateY(0px);}
  50%   {transform: translateX(20px) translateY(20px);}
  100%  {transform: transform: translateX(0px) translateY(0px);}
}
.text-404 {
  font-size: 30px;
  margin-bottom: 25px;
}
.link-404 {
  display: block;
  font-size: 30px;
  color: #37b1d2;
}

.login-wrapper {
  font-size: 30px;
}
.login-link {
  color: #3cb7d3;
}
.login-text {
  margin-bottom: 10px;
}
