.launcher-fluid {
  margin: -8px !important;
}

.app-loading {
  position: absolute;
  bottom: 10vh;
  left: 5vw;
  z-index: 101;
}

.launcher-background {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.launcher {
  font-weight: 900;
  animation: color-change 1s infinite;
  font-size: 12px;
}

@keyframes color-change {
  0% {
    color: red;
  }
  25% {
    color: green;
  }
  75% {
    color: blue;
  }
  100% {
    color: red;
  }
}
