/*woot css up in here*/

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

:root { color-scheme: light dark; }

/* LIGHT MODE */
@media (prefers-color-scheme: light) {
  	:root {
    	--bg-color:   #fafafa;
    	--text-color: #181719;
		--pink-color: #f49ec4;
		--purp-color: #b883ca;
		--blue-color: #3bd1fe;
		--green-color:#8bdf92;

		--link-color: #f49ec4;
  	}
}

/* DARK MODE */
@media (prefers-color-scheme: dark) {
  	:root {
    	--bg-color:   #181719;
    	--text-color: #fafafa;
		--pink-color: #f49ec4;
		--purp-color: #b883ca;
		--cyan-color: #3bd1fe;
		--green-color:#8bdf92;

		--link-color: #fda238;
  	}

  	#name { filter: invert(); }
}

html {
	background-color: light-dark(#fafafa, #181719);

	font-family: 'Roboto', sans-serif;
	min-width: 960px;
}

#scroll {
	overflow: hidden !important;
}

.sticky {
	left: 0;
    bottom: 0;
    display: block;
    position: fixed;
}
#T-Bot.sticky { margin-left: -4em; }

/**************/
/*MAIN CONTENT*/
/**************/
body {
	overflow-x: hidden !important;
	display: block;
	width: 100%;
	
	margin: 0px auto;
	padding-top: 8px;
	padding-bottom: 0px;
}

#header {
	display: inline-block;
}

#mugParent {
	margin: 0px;
	margin-bottom: -96px;
}

#mug {
	display: block;
	width: auto;
	height: 260px;
	
	position: relative;
	z-index: -1;
}

#mug-stamp {
    width: auto;
	height: 260px;
    aspect-ratio: auto;

    position: absolute;
    z-index: -2;
	top: 20px;

    pointer-events: none;
}

#name {
	width: 480px;
	height: auto;
	
	float: right;
	position: absolute;
	right: 7%;
	margin-top: 6%;
}

h1 {
	text-align: center;
}

h2 {
	float: right;
	position: absolute;
	right: 8%;
	margin-top: 15%;
	
	color: #f49ec4;
}

h2 a {
	margin: 0px 12px;
	
	color: #f49ec4;
}

h3 {
	text-align: center;
}

h3 a {
	color: #f49ec4;
}

h4 {
	text-align: center;
	color: light-dark(#181719, #fafafa) !important;
}

h4 a { color: #f49ec4;}
h4 > a { color: light-dark(#058891, #3bd1fe) !important; }
h4 > a:hover { color: light-dark(#3bd1fe, #5544aa) !important; }

#container {
	display: block;
	width: 960px;
	position: relative;
	float: none;
	
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
}

#content {
	display: block;
	width: 960px;
	height: auto;
	
	margin: 0px auto;
	margin-left: -12.5px;

	float: right;	
}

#demo {
	background-image: url("img/thumbnailVector.png");
	background-repeat: no-repeat;
	background-size: cover;
}

iframe {
	border: 0px;
	padding-bottom: 0px;
}

.nav {
	display: block;
	padding: 24px;
	padding-bottom: 16px;
	float: none;
}

.nav a {
	text-decoration:none;
	font-size: 24px;
	color: var(--text-color);
	font-weight: bold;
	
	float: right;
}

.nav a:hover {
	color: #f49ec4;
}

.navLeft {
	margin-right: 52px;
	
	position: relative;
}

#anim {	
	margin-right: 180px;
}

#shot {	
	margin-right: 225px;
}

#content .nav {
	padding-top: 0px;
	padding-bottom: 12px;
	margin-right: 180px;
}

a {
	text-decoration: none !important;
	font-weight: bold;
}

div {
	margin: 12px;
}

p {
	color: var(--text-color);
	font-size: 18px;
	
	text-align: center;
}

p a {
	color: #f49ec4;
}

.desc {
	display: block;
	margin: auto;

	width: 86%;
}

/*****************/
/*GALLERY SECTION*/
/*****************/
.galleryRow,
.galleryRow2,
.galleryRow3,
.galleryRow4 {
	display: block;
	margin: 0px 0px 9px;
}

.galleryRow img, 
.galleryRow video {
	display: inline-block;	
	max-width: 32%;
}

.galleryMiddle {
	padding: 0px 15px;
}

.galleryLeft {
	padding-right: 12px;
}

.galleryRow2 {
	display: block;
	margin: 0px 0px 14px;
}

.galleryRow2 img, 
.galleryRow2 video {
	display: inline-block;	
	max-width: 49%;
}

.galleryRow2 > video:nth-child(2),
.galleryRow2 > iframe:nth-child(2) {
	float: right;
}

.galleryRow3 img, 
.galleryRow3 video {
	display: inline-block;	
	max-width: 32%;
    padding: .2em;
	padding-top: 0;
}

.galleryRow4 {
	display: block;
	margin: 0px 0px 9px;
}

.galleryRow4 img, 
.galleryRow4 video {
	display: inline-block;	
	max-width: 24%;
	padding-left: 6px;
}

/**************/
/*CONTACT FORM*/
/**************/
form {
    position: relative;
    width: 48%;
}

input, 
textarea { 
    outline: none;
}

.form {
    padding: 36px;
	padding-top: 12px;
}

.form input,
.form textarea {
    display: block;
    width: 96%;
    padding: 15px;
    margin-bottom: 10px;
	
    border: none;
    border-radius: 20px;
    background: #eeeeee;
	resize: none;

	font-family: 'Roboto', sans-serif;
}

button {
	display: block;
	margin: auto;
	width: 60%;
    padding: 10px;
    margin-top: 20px;
	
	text-decoration:none;
	font-size: 24px;
	color: #ffffff;
	font-weight: bold;
	
    border-radius: 20px;
    border: none;
    background: #f49ec4; 
}

button:hover {
    background: #181719;
}

#about {	
	display: block;
	margin: auto;
	position: absolute;
    width: 46.5%;
	
    padding: 10px;
    margin-top: 20px;
    margin-left: 45%;
	
	text-decoration:none;
	font-weight: bold;
}

#about h3 {
	font-size: 18px;
	color: #f49ec4;
}

#about p {
	font-size: 16px;
	text-align: left;
	width: 92%;
	margin-left: 4%;
}

/****************/
/* Writing Page */
/****************/

.writing-credits {
	float: right;
    width: 70%;
	min-width: 640px;

	margin-top: 0;
}

.writing-credits > .content-heading {
	margin: 0;
	padding-top: -2px;

	font-size: 21px;
	color: #f49ec4;
}

.writing-credits > h4 {
	text-align: left;
	margin: 0.5em;
	margin-top: 1em;
}

.writing-credits > h4 > a {
	font-size: 18px;
}

.writing-credits > h5 {
	margin: 0;
	margin-top: -0.5em;
	margin-bottom: 0.5em;

	font-size: 13px;

	color: #3bd1fe;
	color: #6b6b6b;
	/*
	text-shadow: #181719 1px 1px;
	*/
}

.writing-credits > h4 > a {
	color: #181719;
}

.writing-credits > h4 > a:hover {
	color: #f49ec4;
}

.writing-credits > p {
	text-align: left;
    line-height: 1.2em;
	/*
	text-indent: -1em;
	*/

	font-size: 15px;
	font-weight: light-dark(600, 400);

	margin: 0;
	margin-left: 2em;
}

p.writing-entry {
	text-justify: inter-word;
}

/*************/
/* BIO IMAGE */
/*************/

img.bio-image {
	width: 248px;
}

#content > img.bio-image:hover {
	filter: opacity(40%);
}

h4.bio-image { color: #181719; }
#content > h4.bio-image {
	position: absolute;
	margin: 0;
	float: none;
	z-index: 1;

	text-align: center;

	width: 248px;
	height: 248px;
	background-color: rgba(255, 255, 255, 0.6);

	filter: opacity(0%);
}

#content > h4.bio-image:hover {
	filter: opacity(100%);
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	list-style-position: inside;
}

.invert { filter: invert(); }

/********************/
/* MARKDOWN CONTENT */
/********************/
div#markdown-content { 
	min-width: 60%;
	max-width: 1024px;
}

div#markdown-content, 
div#markdown-content > pre {
	text-wrap: unset;
	text-align: left;
	display: inline-block;
}

/* Name Headings */
div#markdown-content > h4,
div#markdown-content > h5,
div#markdown-content > h6 {
	margin: 0;
	padding: 0;
	font-size: 1.8em;
	text-align: left;
	background-color: #191919;
	border: #191919 2px dashed;
	border-radius: 6px;
}

/* Name Headings Padding */
div#markdown-content > h4 > a,
div#markdown-content > h5 > a,
div#markdown-content > h6 > a {	padding: 2px; }

/* Name Headings Recolor Links */
div#markdown-content > h4 > a { color: var(--cyan-color); }
div#markdown-content > h5 > a { color: var(--green-color); }
div#markdown-content > h6 > a { color: var(--purp-color); }

/* Text Content */
div#markdown-content > pre {
	width: 96%;

	margin: 0;
	margin-left: 1%;
	text-align: left;
	display: block;

	padding: 12px 6px;
	padding-left: 2%;
	background-color: #19191924;

	font-size: 1.5em;
	font-weight: bold;
}

div#markdown-content > pre > code {
	color: var(--text-color);
}

/* Markdown Loader Text */
div#markdown-content > h2 {
	font-weight: bold;
	text-align: center;
}

/****************/
/*FOOTER SECTION*/
/****************/
#footer {
	display: block;
	margin: auto;
	
	width: 100%;
	padding-top: 8px;
	padding-bottom: 4px;
	position:absolute;
	height: 24px;
}

#footer p {
	font-size: 14px;
	font-weight: bold;
	text-align:center;
	color: #6b6b6b;

	margin-top: 6px;
	margin-bottom: 0px;
	padding: 0px;
}

#footer img {
	padding-left: 4px;
	padding-right: 4px;

	width: 32px;
	height: auto;
	aspect-ratio: 1/1;

	/* filter: brightness(0) invert(); */
}

#footer img:hover { 
	filter: brightness(0);
	transform: scale(120%);
}

@media (prefers-color-scheme: dark) { #footer img:hover { filter: brightness(0) invert(1); }}

#imgLeft,
#footer > a:nth-child(1) > img {
	/* margin-left: 33.3%; */
}

/* Text Color Override */
#content > h4 {	color: #181719; }

/* Donate Button */
.ko-fi { top: 164px; position: fixed; }
.ko-fi:hover { transform: translateY(5px); }
.ko-fi:active { transform: translateY(-3px); }
