.app__init {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app__init-logo {
  animation: scale 1s alternate infinite ease-in;
}

@keyframes scale {
  0%   {transform: scale(.5);}
  100% {transform: scale(1.2);}
}
