body {
	margin: 0;
	padding: 0;
	background-color: #1D1D1D;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('https://images.unsplash.com/photo-1529078513236-65e1f6c19b46');
	background-size: cover;
	filter: blur(10px);
	z-index: -1;
}

.splash-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
}

.logo {
	height: 100px;
	margin-bottom: 20px;
}

h1 {
	font-size: 3em;
	margin: 0;
}

.loading-ring {
	display: inline-block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 4px solid #fff;
	border-top-color: #60D1F6;
	animation: loading-ring 1s ease-in-out infinite;
}

@keyframes loading-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
