html, body {
  margin: 0;
  padding: 0;
  background: #001220;
}

.app__svg_bl svg, .app__svg_tr svg {
  width: 400px;
  height: 400px;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-name: breath;
}
.app__svg_bl svg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.app__svg_tr svg {
  position: absolute;
  top: 0;
  right: 0 !important;
}
.app__title {
  font-family: "Noto Sans", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #4056d1;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
.app__title h1 {
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-name: bounce;
}
.app__desc {
  color: #7e8ed8;
  font-weight: 300;
  font-size: 50px;
  text-align: center;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-name: breath;
}

@keyframes breath {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media all and (max-width: 650px) {
  h1 {
    font-size: 55px;
  }
  .app__desc {
    font-size: 25px;
  }
}

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