@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Narrow');
@import url('https://fonts.googleapis.com/css2?family=Meow+Script&display=swap');

body {
	margin: 0px;
	font-family: 'Raleway';
	background-color: #ffffff;
	color: #ffffff;

	background-image: url("../siteimages/no_orders.jpg");
	background-position:  center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

#blocker {
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10;
	display: block;
	width: 100%;
	height: 100%;

	background-color: #00000088;
}

#holder {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
	display: block;

	text-align: center;
	font-size: 40px;
	line-height: 48px;
}

h1 {
	font-size: 100px;
	color: #ffff00;
	margin-top: 0px;
	margin-bottom: 0px;
}

p {
	text-align: center;
}

span {
	position: relative;
	display: block;
	top: 30px;

	font-family: 'Meow Script', cursive;
	font-size: 100px;
	font-weight: bold;
	text-align: center;
	color: #de6b01;

	transform: rotate(-10deg);
}




@media screen and (max-width: 699px) {

	#holder {
		font-size: 20px;
		line-height: 28px;
	}
	
	h1 {
		font-size: 50px;
	}

	span {
		top: 10px;
		font-size: 50px;
	}
	
}