.initial-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.initial-loader__logo {
  width: 15em;
  height: auto;
  margin: 0 auto;
  animation: pulseLogo 0.6s ease-in-out infinite alternate;
}

.initial-loader--unmounting {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.initial-loader--unmounting .initial-loader__logo {
  animation: shrinkLogo 0.3s ease-in-out forwards;
}

@keyframes pulseLogo {
  from {
    width: 15em;
  }
  to {
    width: 25em;
  }
}

@keyframes shrinkLogo {
  to {
    width: 0;
  }
}