#start .inner {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#start p {
  font-family: Lora;
  font-size: 22px;
  color: #f5e2cd;
  filter: drop-shadow(0 1px 3px rgb(0, 0, 0));
}

#start p.note {
  font-size: 24px;
  font-weight: bold;
}

#loading-progress {
  background-color: rgba(18, 10, 22, 0.8);
  box-shadow: inset 3px 3px rgba(0, 0, 0, 1), 1px 1px rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: inline-block;  
  width: 960px;
  position: relative;
  transition: width 1s ease-out;
  margin: 52px 0 72px 0;
}

#loading-progress .button {
  position: relative;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-out;
}

#loading-progress.is--done {
  width: 212px;
}

#button-start.is--active {
  opacity: 1;
  z-index: 10;
}

#loading-progress .indicator {
  border-radius: 12px;
  background-image: linear-gradient(#fff 0%, #ffeeee 5%, #f6c3d8 95%);
  box-shadow: 0 2px 4px rgb(0, 0, 0);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 68px;
  width: 0;
  opacity: 0;
  animation: loading-progress 10s ease-out;
  animation-fill-mode: forwards;
  z-index: 2;
}

@keyframes loading-progress {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

