
body {
  box-sizing:border-box;
  background: lightskyblue;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 13px;
  overflow: hidden;
  min-height: 100%;

  user-select: none;
}

.container{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 100;
}

.working {
  font-size: 21px;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.title {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 100%;
  max-height: 100%;
  transition: 4s;
  opacity: 0.8;

}

.fadeOut {
  opacity: 0;
}
