@import "fonts.css";

html {
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(45deg,  #010c14 0%, #2196F3  100%);
  background-size: 200% 200%;
  height: 100%;
  width: 100%;
  animation: background 6s ease infinite;
}

@keyframes background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/*# sourceMappingURL=styles.css.map */