* { margin: 0; padding: 0; box-sizing: border-box;

}

/* =============================================== Splash Screen =============================================== */

/* ---------------- set font face ---------------- */
@font-face {
	font-family: Luminari;
	src:
		local("Luminari-Regular"),
		url('Fonts/Luminari-Regular.ttf')
}

/* ---------------- splash screen properties ---------------- */

#splash {
	/* position splash screen */
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	/*align-items: center;*/
	/*justify-content: left;*/
	
	/* position splash image */
	background-image: url('Media/campfire.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	background-color: black;
}

/* ---------------- splash button properties ---------------- */
#btn {
	position: fixed;
	top: 50%;
	left: 0%;

	border: none;
	/*border:2px solid #04AA6D; /* Green */
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	/*font-size: 1.25vw;*/
	margin: 4px 2px;
	cursor: pointer;
	background-color: Transparent;
}

/* ---------------- splash button text properties ---------------- */
a.fill-div {
	font-family: "Luminari", fantasy;
	font-size: 2em;

	display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

/* ---------------- splash screen photo credits ---------------- */
#credits {
	position: fixed;
	top: 95%;
	left: 0%;
}

#p_credits {
	font-family: "Luminari", fantasy;
	font-size:0.75em;
	color: white;
}

#a_credits {
	color: white;
}

/* =============================================== General =============================================== */

/* --------------- links --------------- */
a {
	text-decoration: none;
	color: var(--highlight);
}

a:hover {
	border-bottom: 1px solid;
}

/* =============================================== Smaller screens =============================================== */

@media only screen and (max-width: 680px) {
	body { font-size: 16px; }
	#p_fantasy { font-size: 1.25em; }
	
}

@media only screen and (max-width: 540px) {
	nav { width: 100%; } /* Fix for older webkit versions */
}

