:root {
  background-color: #fafafa;
  font-family: "Roboto", sans-serif;
}

#inital-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90vh;
}
.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #b8d4de;
  /* background-color: #333; */

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

.text-appname {
  color: hsl(218, 31%, 49%);
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
