/* CoastersCrew Splash Screen */
#splash-screen{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
}
#splash-screen img{
  width:min(220px, 60vw);
  animation: ccSplashZoom 1.5s ease-in-out forwards;
}
@keyframes ccSplashZoom{
  0%{transform:scale(0.88);}
  50%{transform:scale(1.06);}
  100%{transform:scale(1);}
}
