/* You can add global styles to this file, and also import other style files */
body {
	margin: 0;
	font-family: "Roboto", "Source Code Pro", monospace, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@keyframes rotating {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
.rotating {
	animation: rotating 2s linear infinite;
}

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