#splash{
	overflow: hidden;
	height: 100vh;
	width: 100vw;
	top: 0;
    left: 0;

    margin-block-start: 0;
    margin-block-end: 0;

	display: flex;
    justify-content: center;

    position: fixed;
    z-index: -1;

    pointer-events: all;

    display: none;
}

/* HIDE UNTIL READY */

	.ready #splash{
	    display: block !important;
	}

	#splash{
		opacity: 0;
		transition: opacity 1s;
	}

	#splash.ready{
		opacity: 1;
	}

	#nav{
		opacity: 0;
	}

/* LAYOUT */

	#splash .flex_center{
		display: flex;
    	justify-content: center;
	}

	#splash .slide {
		visibility: hidden;
		position: absolute;
		height: 100%;
		width: 100%;

		display: flex;
	    flex-direction: column;
	    justify-content: center;

	    overflow: hidden;

	    user-select: none;
	}

	#splash.complete{
		pointer-events: none;
	}


/* ANIMATION */

	#splash .slide.current {
		visibility: visible;
	}

/* SLIDE SPECIFIC */

	#splash #slide001 {
		text-align: center;
		/* font-family: Angelwish; */
		font-size: 3em;
		font-weight: 600;
		line-height: 0.95;
	}

	#splash #slide002 img{
		width: auto;
    	max-height: 100vh;
    	height: 66%;
   	 	margin-top: auto;
   		margin-bottom: auto;

   		max-width: 50%;

   		display: block;
	}


/* BLOCK USER INTERACTION */
	
	#splash *{
		user-select: none;
		-webkit-user-select: none;
		pointer-events: none;
	}

