/*
darker: 4E3315	[Thin thing]
dark: 543C21	[Big area]
middle: CEC694	[slight darker then background]
background: E2DEAB
*/
html{
	visibility: visible;
	background: #ccc url(back1.gif);
	min-height: 100%;
}
body {
	background: url(back2.png) no-repeat center top;
	background-attachment: fixed;
	min-width: 319px;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #555;
}
a {
	text-decoration: none;
	color: #555;
}
a:hover {
	color: #777;
}

.button {
 	background-color: #CEC694;
	border-radius: 8px;
 	border: 2px solid #543C21;
 	padding: 1px 10px;
 	color: #543C21;
 	text-decoration: none;
 	font-weight: bold;
}
.button:hover {
	background-color: #543C21;
	color: #D1C787;
}

.hidden {
	visibility:hidden;
}

/* content */
#content {
	position: absolute;
	width: max-content;
	min-width: 319px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#heading {
	font-size: 10vw;
	font-weight: 100;
	line-height: 1em;
	color: #666;
	text-transform: uppercase;
}
#info {
	font-size: 2.5vw;
	visibility: hidden;
	margin-top: 5px;
	text-transform: uppercase;
}

#content {
	width: max-content;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(to right, #666, #666, #666, #eee, #666, #666 , #666);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	animation: TransitioningBackground 2.4s linear infinite;
	background-size: 200% 100%;
}
@keyframes TransitioningBackground {
	0% {
		background-position: 100% 100%;
	}
	50% {
		background-position: 0% 100%;
	}
	100% {
		background-position: 100% 100%;
	}	
}

/* footer */
#footer {
	font-size: 14px;
	line-height: 1.25;
	position: absolute; 
	width: max-content;
	min-width: 319px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

@media screen and (max-width:959px) {
	/*None-Desktop*/
	.tabletHide, .desktopOnly {
		display: none;	
	}
}
@media screen and (min-width: 768px) and (max-width:959px) {
	/*Tablet*/
	#heading {
		font-size: 12vw;
	}
	#info {
		font-size: 3vw;
	}
	#footer {
		font-size: 13px;
	}
}
.mobileOnly {
	display:none !important;	
}
@media screen and (max-width: 767px) {
	/*Mobile*/
	.mobileOnly {
		display: block !important;	
	}
	.mobileHide, .desktopOnly {
		display: none !important;	
	}

	#heading {
		font-size: 18vw;
	}
	#info {
		font-size: 4.6vw;
	}
	#footer {
		font-size: 12px;
	}
}