body {
  background-color: #1e1e2e;
}

* {
  color: #cdd6f4;
}

a[href] {
  color: #89b4fa;
}

video:hover {
  animation: Rotate 1s linear infinite;
}

img:hover {
  animation: Scale 60s linear 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  animation: RGB 5s linear infinite;
}

@keyframes RGB {
  0% {
    color: #f00;
  }
  33% {
    color: #0f0;
  }
  66% {
    color: #00f;
  }
  100% {
    color: #f00;
  }
}
@keyframes Scale {
  0% {
    scale: 1;
  }
  100% {
    scale: 100;
  }
}
@keyframes Rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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