@keyframes animate-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		display: none;
	}
}

.splash-screen--fade-out {
	animation: animate-out 0.5s ease-in-out forwards;
}
