@import url('https://fonts.googleapis.com/css?family=Ubuntu');

* {
	box-sizing: border-box;
}

body {
	font-family: "Ubuntu", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
	margin: 0;
}

.bg {
	background: url('https://images.unsplash.com/photo-1709978601970-036e92662b46?q=80&w=1513&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover; 
	height: calc(100vh + 4rem);
	width: calc(100vw + 4rem);
	position: absolute;
	top: -2rem;
	left: -2rem;
	width: calc(100vw + 4rem);
	height: calc(100vh + 4rem);
	z-index: -1;
	filter: blur(30px);

}

.loading {
	color: #fff;
	font-size: 3rem;
	opacity: 1;
}