@import url("https://fonts.googleapis.com/css?family=Roboto:100");

.loading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-text {
  margin: 10px;
  font-size: 20px;
}

.loading {
  margin: 0;
  width: 50px;
  height: 50px;
  border: 3px solid #221F1F;
  border-radius: 50%;
  border-top-color: #EF4934;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
