@charset "utf-8";

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	text-align:center;
}


#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
}

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.1s;
animation-fill-mode:forwards;
opacity: 0;
}
/*
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 0.1;
	transform: translateY(0);
  }
}
/*