/* src/styles.scss */
html {
  font-family: "Roboto", sans-serif;
}
.wrapper {
  margin-top: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wrapper .loading {
  height: 100px;
  animation: spin 1.5s linear infinite;
}
.wrapper .img {
  width: 10rem;
  margin: 1rem auto 0;
}
.wrapper .img img {
  width: 100%;
  display: block;
}
.wrapper h1 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
.wrapper p {
  font-size: 1.2rem;
  display: flex;
  color: #f44336;
  width: 70%;
  margin: auto;
  text-align: center;
  justify-content: center;
  line-height: 2rem;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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