

/*
 *  fang.templeofstone.com
 *  
 *  Created by Scott Johnstone 
 *  fang@templeofstone.com
 *  
 *  ©2023 Scott Johnstone
 * 
 */


/* *** GLOBAL *** */

:root {
	
	--col_bg_body: #b36fff;
	
	--col_disabled: #999;

}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-family: libre_baskervilleregular, Baskerville, Georgia, TimesNewRoman, "Times New Roman", Times, serif;
	vertical-align: baseline;
	background: transparent;
	color: #fff;
}

html, body {
	width: 100%;
	min-height: 100vh;
}

body {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: var(--col_bg_body);
}

#pageload_fadein {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: opacity 0.2s;
	z-index: 100;
}

div.float_clear {
	clear: both;
}

div.spacer {
	height: 2v;
	margin: 0;
}

.disabled {
	color: var(--col_disabled);
}

.nowrap {
	white-space: nowrap;
}

.pointer {
	cursor: pointer;
}





/* *** MAIN CONTENT CONTAINER *** */

#main_cont {
	position: relative;
}






/* *** FOOTER *** */

#ftr_cont {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-items: center;
	background: var(--col_bg_body);
	font-size: min(1.3vw, 4.2vh);
}

#ftr_cont * {
	padding: min(2vw, 3vh);
	text-decoration: none;
}

#ftr_cont a:hover {
	text-shadow: white 0 0 1vh;
}

#debug {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 50px;
	max-height: 200px;
	overflow: scroll;
	background: #000000; 
	color: #00AA00; 
}





/* ---------- BREAK-POINTS ------------------------------------------------------------------------------------------------------------- */


/* portrait */

@media (max-aspect-ratio: 90/69), (max-width: 690px) { 
	
	#ftr_cont {
		font-size: min(1.8vw, 4.2vh);
	}

}



/* square-ish */

@media (max-aspect-ratio: 90/69) and (min-aspect-ratio: 9/8) { 

}




/* ---------- KEYFRAMES --------------------------------------------------------------------------------------------------------------- */





/* ---------- CUSTOM FONTS ------------------------------------------------------------------------------------------------------------- */


/*
@font-face {
    font-family: 'dm_serif_displayregular';
    src: url('/fonts/dmserifdisplay-regular.woff2') format('woff2'),
         url('/fonts/dmserifdisplay-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
*/
