html, body {
  margin: 0;
  padding: 0;
}

#root {
  position: relative;
  height: 100vh;
  background-color: #FEFEFE;
}

.logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 33px;
}
.logo-wrapper .logo {
  width: 100%;
  height: 100%;
  position: relative;
  animation: bg-anim 1.3s infinite linear alternate-reverse;
}
.logo-wrapper::before, .logo-wrapper::after {
  content: "";
  background-image: url("/assets/rezso-dev.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #FEFEFE;
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 33px;
  margin: 0 4px;
}
.logo-wrapper::before {
  left: 2px;
  clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
  z-index: 1;
  opacity: 0;
  animation: noise-anim 1.6s infinite linear alternate-reverse;
}
.logo-wrapper::after {
  left: -2px;
  clip-path: polygon(0 35%, 100% 35%, 100% 70%, 0 70%);
  -webkit-clip-path: polygon(0 35%, 100% 35%, 100% 70%, 0 70%);
  z-index: 2;
  opacity: 0;
  animation: noise-anim 1s infinite linear alternate-reverse;
}
.logo-wrapper .logo-img {
  width: 200px;
  height: 33px;
  /*background-color: yellow;*/
  margin: 0 4px;
}

@keyframes noise-anim {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  91% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bg-anim {
  0% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  17% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  21% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0.5;
  }
  99% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
