@charset "utf-8";

*, *:before, *:after {
	box-sizing: unset;
}

html, body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family:"Perpetua Regular";
	background: #F9F8F5;
}

.loading-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
}

.loading-logo {
	width: 300px;
	max-width: 60vw;
	height: auto;
}

.loading-text {
	font-size: 25px;
	color: #333333;
}

@media screen and (max-width: 767px) {
	.loading-logo {
		width: 200px;
		max-width: 70vw;
	}

	.loading-text {
		font-size: 18px;
	}
}


