:root {
	font-family: 'Helvetica Neue', arial, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	color-scheme: light dark;
	color: #444;
	background: #fafafa;
}

@media (prefers-color-scheme: dark) {
	:root {
		color: #fff;
		background: #1c1c1c;
	}
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

#app > main {
	display: -ms-flexbox;
	display: flex;
	padding-top: 3.5rem;
	margin: 0 auto;
	min-height: calc(100vh - 3.5rem);
	max-width: 1280px;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
}

@media (max-width: 639px) {
	#app > main {
		margin: 0 2rem;
	}
}

/* styles.css */
@keyframes move {
  0% {
    transform: translate(-7px);
  }
  25% {
    transform: translate(5px);
  }
  50% {
    transform: translate(-7px);
  }
  75% {
    transform: translate(5px);
  }
  100% {
    transform: translate(-7px);
  }
}

@keyframes rectangle {
  0%,
  80%,
  100% {
    height: 10px;
    box-shadow: 0 0 #8100d1;
  }
  40% {
    height: 10px;
    box-shadow: 0 -10px #8100d1;
  }
}

@keyframes dot {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}

