/* src/styles.scss */
@font-face {
  font-family: "mainFont";
  src: url(/assets/font/main.ttf);
}
@font-face {
  font-family: "prettyFont";
  src: url(/assets/font/pretty.ttf);
}
@font-face {
  font-family: "titleFont";
  src: url(/assets/font/title.ttf);
}
* {
  padding: 0;
  margin: 0;
}
body {
  overflow: hidden;
}
.prop-icon {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rotatingAnimation {
  animation-name: rotating;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes rotating {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.scale-animation {
  animation-name: scale-a;
  animation-duration: 1s;
}
@keyframes scale-a {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
