.splash {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: #000;
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.splash.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash .icon {
  width: 204px;
  height: 190px;
  fill: #fff;
}

.js .splash {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}