@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@600&display=swap');

body {
	margin: 0;
	padding: 0;
	background-image: url(/neue/vf-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	font-family: 'Nunito Sans', sans-serif;
	color: white;
	-webkit-font-smoothing: antialiased;
}

#splash {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 30px;
}

#logo {
	max-width: 320px;
	width: 100%;
	flex-shrink: 1;
}

#splash-list:before {
	/*content: "";*/
	width: 100px;
	position: absolute;
	left: 50%;
	margin-left: -50px;
	top: -2em;
	height: 1px;
	background-image: linear-gradient(to left, rgba(255,255,255,0) 0%, white 50%, rgba(255,255,255,0) 100%);
}

#splash-list {
	position: relative;
	font-weight: 600;
	list-style-type: none;
	display: flex;
	margin-left: 0;
	padding-left: 0;
	text-transform: uppercase;
	font-size: 0.8em;
	letter-spacing: 0.15em;
	margin-top: 2em;
}

#splash-list li {
padding-left: 0.15em;
margin: 0.5em 1em;
}

@media only screen and (max-width: 500px) {
	
	#splash-list {
		flex-direction: column;
		text-align: center;
	}
	
}