:root {
	--blue: mediumblue;
	--red: orangered;
	--green: #149f35;
	--yellow: yellow;
	--orange: chocolate;
	--cyan: darkturquoise;
	--dark: #aaa;
	--pointer: url(./assets/t_cur_1b.png), auto;
	--default: url(./assets/t_cur_1a.png), auto;
	--drag-up: url(./assets/t_cur_2.png), auto;
	--drag-down: url(./assets/t_cur_2a.png), auto;
	--main-font: 'dos_vga', monospace;
}

@font-face {
    font-family: 'dos_vga';
    src: url('./assets/dos_vga_new.woff2') format('woff2'),
	url('./assets/dos_vga_new.woff') format('woff'),
	url('./assets/dos_vga_new.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fam-code';
    src: url('./assets/fam-code.woff2') format('woff2'),
	url('./assets/fam-code.woff') format('woff'),
	url('./assets/fam-code.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 's-invaders';
    src: url('./assets/s-invaders.woff2') format('woff2'),
	url('./assets/s-invaders.woff') format('woff'),
	url('./assets/s-invaders.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'tos-online'; 
	src: url('./assets/tos-online.woff2') format('woff2'),
	url('./assets/tos-online.woff') format('woff'),
	url('./assets/tos-online.ttf') format('truetype'), 
	url('./assets/tos-online.eot'),
	url('./assets/tos-online.eot?#iefix') format('embedded-opentype'),
	url('./assets/tos-online.svg?#tos-online') format('svg');
	font-weight: normal;
	font-style: normal;
}

* {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	font-family: inherit;
	font-size: inherit;
	font-weight: normal;
	-ms-overflow-style: none;  
	scrollbar-width: none;
	font-family: var(--main-font);
}

*::-webkit-scrollbar {
	display: none;
}

*::selection {
	background: black;
	color: yellow;
	mix-blend-mode: exclusion;
}

html, body {
	overflow: visible;
	scroll-padding-top: 70px;
	background: #111;
}

#page {
	display: block;
	background: white;
	font-size: 16px;
	width: 1310px;
	max-width: calc(100vw - 20px);
	margin: 10px auto 0 auto;
	padding: 1.5em 0;
	overflow-x: hidden;
	overflow-y: scroll;
	position: relative;
	min-height: calc(100vh - 10em);
	height: 100%;
	color: mediumblue;
	color: var(--blue);
	line-height: 1.3em;
}




.page-wrap #page * {
	border-radius: 0;
}

body > *,
#page .gform_wrapper *,
body .mce-floatpanel * {
	cursor: var(--default);
}

#page input {
	-webkit-appearance: none;
	border-radius: 0;
}

.page-wrap::after {
	content: "";
	width: 100%;
	height: 10px;
	background: #111;
	display: block;
	position: fixed;
	left: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 9999;
}


/*-- UNIQUE --*/

.no-ticker .t-directory-bar,
.no-title .t-menu::before,
.no-close .t-close {
	display: none;
}

.gform_wrapper input, .gform_wrapper button,
.gform_wrapper iframe,
.gform_wrapper i,
body .mce-floatpanel a, body .mce-floatpanel button, body .mce-btn, body .mce-btn *,
.comment-respond label {
	cursor: var(--pointer) !important;
}

.godword_wrap {
	height: 6.25em;
	line-height: 1.25em;
	display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
	overflow: hidden;
}
.godword_wrap:hover {
	height: auto;
	min-height: 6.25em;
	display: block;
	-webkit-line-clamp: unset;
}

article.error {
	padding-left: 1em;
}

/*-- MASTHEAD --*/

#t-head {
	background: mediumblue;
	background: var(--blue);
	height: calc(1.2em + 10px);
	line-height: 1.2em;
	color: white;
	position: fixed;
	top: 0px;
	border-top: 10px solid #111;
	z-index: 999;
	width: 1310px;
	max-width: calc(100vw - 20px);
}

.admin-bar #t-head {
	top: 32px;
}

.darkmode {
	-webkit-filter: invert(1) hue-rotate(120deg);
	filter: invert(1) hue-rotate(120deg);
}

.darkmode img {
	-webkit-filter: invert(1) hue-rotate(-120deg);
	filter: invert(1) hue-rotate(-120deg);
}

.darkmode #t-head {
	top: 0;
	position: absolute;
	border-top: unset;
	height: auto;
}

#t-head > span {
	padding: 0 0 0 12px;
}

#t-load {
	float: left;
	padding-left: 10px;
	cursor: var(--pointer);
}

#t-load > span {
	-webkit-animation: t-flash-blue 0.5s steps(1) infinite;
	animation: t-flash-blue 0.5s steps(1) infinite;
	text-transform: uppercase;
	padding-left: 2px;
}

#t-load > ul {
	position: absolute;
	left: 0;
	top: 1.2em;
	z-index: 99;
	background: mediumblue;
	background: var(--blue);
	list-style: none;
	margin: 0;
	padding: 3px 0;
	opacity: 0;
	pointer-events: none;
	border: 1px solid black;
	min-width: 140px;
}
#t-load:hover > ul {
	opacity: 1;
	pointer-events: all;
}
#t-load:hover span {
	background: yellow !important;
	color: black !important;
}
#t-load > ul li {
	padding: 3px 12px;
	margin: 0;
	display: block;
	position: relative;
}
#t-load > ul li::before {
	left: 11px !important;
	top: 3px !important;
}
#t-load > ul li:hover {
	background: yellow;
	color: black;
}

#t-load .dropdown ul {
	position: absolute;
	left: 100%;
	margin-top: calc(-1.4em - 4px);
	background: mediumblue;
	background: var(--blue);
	min-width: 165px;
	padding: 3px 0;
	color: white;
	opacity: 0;
	border: 1px solid black;
	pointer-events: none;
}

#t-load .dropdown:hover ul {
	opacity: 1;
	pointer-events: all;
}
#t-load .dropdown::after {
	content: ">";
	float: right;
}

#t-load .dropdown, .single-post .readmore {
	display: none;
}

.home #t-load .dropdown {
	display: block;
}
.home #t-load .index {
	display: none;
}

#t-load li a {
	display: block;
	margin: -3px -12px;
	padding: 3px 12px;
	background: inherit;
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
#t-load li a::before {
	left: 11px;
	top: 3px;
}

#t-info {
	position: absolute;
	right: 0;
	top: 0;
}

#t-info > span {
	color: yellow;
	-webkit-animation: t-flash-yellow 0.6s steps(1) infinite;
	animation: t-flash-yellow 0.6s steps(1) infinite;
	padding: 2px 4px 0 2px;
	display: block;
	line-height: 1em;
	width: 1.2em;
	text-align: right;
	cursor: var(--pointer);
}

#t-info .site-desc {
	margin-bottom: 1em;
}

#t-info:hover > span {
	width: 250px;
	-webkit-animation: unset;
	animation: unset;
}

#t-info .t-infobox {
	position: absolute;
	pointer-events: none;
	right: 0;
	border: 1px solid black;
	display: block;
	width: 250px;
	background: var(--blue);
	padding: 0.5em;
	opacity: 0;
	z-index: -99;
}
#t-info:hover .t-infobox {
	opacity: 1;
	pointer-events: all;
	z-index: 99;
}
#t-info .t-infobox img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

#t-info .custom-logo-link:hover::before {
	content: "God likes elephants";
	left: 10px;
	top: 10px;
	width: auto;
}

#keyStroke {
	float: right;
	color: yellow;
	text-transform: uppercase;
	position: absolute;
	right: 2px;
	white-space: nowrap;
	background: mediumblue;
	background: var(--blue);
	pointer-events: none;
}

@media only screen and (max-width: 480px) {
	#keyStroke {
		display: none;
	}
}

/*-- GENERAL STYLES --*/

.page-wrap a {
	cursor: var(--pointer);
	color: red;
	text-decoration: underline;
	position: relative;
}

.page-wrap a:hover {
	background: black;
	color: cyan;
	text-decoration: none;
}

.page-wrap a:hover::before,
.t-icon:hover .icon_caption::before,
#t-load ul li:hover::before {
	content: "";
	width: 0.55em;
	height: 1em;
	border-bottom: 1px solid currentColor;
	top: 0;
	left: 0;
	display: block;
	position: absolute;
	-webkit-animation: t-flash-yellow 0.4s steps(1) infinite;
	animation: t-flash-yellow 0.4s steps(1) infinite;
	mix-blend-mode: exclusion;
}


.page-wrap textarea {
	color: black !important;
	background: transparent !important;
	border: 5px double mediumblue;
	padding: 2px !important;
	font-family: inherit !important;
	width: 100% !important;
	box-shadow: unset !important;
	caret-color: var(--cyan);
	outline: none;
}


.page-wrap textarea:focus-visible,
.page-wrap input:focus-visible {
	outline: 1px solid #aaa;
	outline: 1px solid var(--dark);
}

.page-wrap ul li {
	list-style: square;
}
.sidebar ul li {
	list-style: none;
}

.page-wrap p {
	margin: 0 0 5px 0;
}

.page-wrap hr {
	border: unset;
	border-top: 2px solid var(--blue);
	margin: 1em 0;
}

.page-wrap h1,
.page-wrap h2,
.page-wrap h3,
.page-wrap h4,
.page-wrap h5,
.page-wrap h6 {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0.5em 0;
	font-weight: normal;
}

.page-wrap h1 {
	padding: 1px 1px 0px 1px;
	color: white;
	background: mediumblue;
	background: var(--blue);
	text-transform: uppercase;
	-webkit-animation: t-flash-blue 0.6s steps(1) infinite;
	animation: t-flash-blue 0.6s steps(1) infinite;
	line-height: 0.9em;
	margin-bottom: 1em;
	max-width: 100%;
	width: max-content;
}
.page-wrap .t-context h1 {
	color: #aaa;
	color: var(--dark);
	-webkit-animation: t-flash-grey 0.6s steps(1) infinite;
	animation: t-flash-grey 0.6s steps(1) infinite;
}
.page-wrap h2 {
	color: white;
	background: black;
	line-height: 0.9;
	padding: 1px 1px 0 1px;
	width: max-content;
	max-width: 100%;
}
.page-wrap h2::before,
.page-wrap h2::after {
	content: "----";
}
.page-wrap h3 {
	color: red;
}
.page-wrap h4 {
	color: magenta;
}
.page-wrap h5 {
	color: black;
}
.page-wrap h6 {
	color: mediumblue;
	color: var(--blue);
}

.page-wrap h1 a {
	color: inherit;
	display: block;
	margin: -1px -1px 0 -1px;
}

.page-wrap strong {
	color: chocolate;
	color: var(--orange);
	font-weight: normal;
}
.page-wrap em {
	color: darkturquoise;
	color: var(--green);
	font-style: normal;
}

.page-wrap del {
	text-decoration: none;
	-webkit-animation: t-flash-red 0.45s steps(1) infinite;
	animation: t-flash-red 0.45s steps(1) infinite;
}

.page-wrap blockquote a,
.page-wrap blockquote strong {
	color: black;
}

.page-wrap blockquote {
	position: relative;
	margin: 1em 0;
	padding-left: 40px;
	color: var(--dark);
}
.page-wrap blockquote::before {
	content: "â€¹!--";
	position: absolute;
	left: 0;
}
.page-wrap blockquote p:last-of-type::after{
	content: "--â€º";
	padding-left: 5px;
}

.hidden,
.page-template-default.page .post-meta,
.page-template-default.page .post-title,
.page-template-default.page .delimiter,
.page-template-default.page #pagination {
	display: none !important;
}

.t-menu {
	border: 6px double currentColor;
	min-height: 3em;
	background: white;
	padding: 1em;
	outline: 4px solid white;
	margin: 12px 8px;
	overflow: visible;
	width: 100%;
	max-width: calc(100% - 16px);
	float: left;
	position: relative;
}

.t-context {
	border: 3px solid currentColor;
	background: #aaa;
	background: var(--dark);
	outline-color: #aaa;
	outline-color: var(--dark);
}

@media only screen and (min-width: 767px) {
	.t-menu.three_fifth {
	width: calc(60% - 16px);
	}
	.t-menu.two_fifth {
	width: calc(40% - 16px);
	}
	.t-menu.one_half {
	width: calc(50% - 16px);
	}
	.t-menu.one_third {
	width: calc(33.33% - 16px);
	}
	.t-menu.two_third {
	width: calc(66.66% - 16px);
	}
}


@media only screen and (max-width: 767px) {
	.t-menu {
		margin: 12px 8px !important;
	}
}

.t-menu::before,
.comment-reply-title {
	content: attr(aria-label);
	display: block;
	overflow: visible;
	padding: 2px 1px 0px 2px;
	line-height: 0.7;
	position: absolute;
	opacity: 1;
	top: -9px;
	left: 6px;
	background: mediumblue;
	background: var(--blue);
	text-transform: uppercase;
	-webkit-animation: t-flash-blue 0.5s steps(1) infinite;
	animation: t-flash-blue 0.5s steps(1) infinite;
}
.t-context::before {
	top: -6px;
	-webkit-animation: t-flash-grey 0.5s steps(1) infinite;
	animation: t-flash-grey 0.5s steps(1) infinite;
}

.t-close {
	position: absolute;
	background: white;
	padding: 2px 1px 0px 2px;
	display: block;
	top: -10px;
	right: 6px;
	cursor: var(--pointer);
	line-height: 0.8em;
	letter-spacing: 0.1em;
}
.t-context .t-close {
	top: -6px;
	background: #aaa;
}
.t-close:hover {
	color: white;
	background: mediumblue;
	background: var(--blue);
}

.t-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.t-menu ul li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.page-wrap .index-wrap * {
	margin: 4px 0 !important;
}

.page-wrap .t-button,
#page .gform_wrapper .button,
.page #wp-link .button,
input[name="gform_send_resume_link_button"],
input#submit {
	background: black !important;
	color: white !important;
	border: 2px solid currentColor !important;
	outline: 3px solid black;
	padding: 2px 8px !important;
	margin: 15px  auto 0 auto;
	display: block;
	width: auto !important;
	max-width: max-content;
	cursor: var(--pointer);
	text-transform: uppercase;
	font-size: 1em;
	transition: unset !important;
}

body .mce-window-head .mce-dragh,
body .mce-resizehandle i,
#page .mce-i-resize,
.t-button:hover {
	cursor: var(--drag-up) !important;
}

.t-button:active {
	cursor: var(--drag-down) !important;
}

.page-wrap .t-button:hover,
#page .gform_wrapper .button:hover,
input[name="gform_send_resume_link_button"]:hover,
.page #wp-link .button:hover,
input#submit:hover {
	color: black !important;
	background: white !important;
	outline-color: white;
}

.page-wrap .t-button i {
	-webkit-animation: t-flash-black 0.5s steps(1) infinite;
	animation: t-flash-black 0.5s steps(1) infinite;
	font-style: normal;
}

/*-- TICKER --*/

.t-directory-bar {
	position: absolute;
	width: 40%;
	white-space: nowrap;
	overflow: hidden;
	color: white;
	background: mediumblue;
	background: var(--blue);
	line-height: 0.9em;
	top: -10px;
	left: 33%;
}

.t-context .t-directory-bar {
	color: #aaa;
	color: var(--dark);
	top: -7px;
}
.t-context .t-directory-bar * {
	font-weight: bold;
}

.ticker {
	display: inline-block;
	white-space: nowrap;
	padding-right: 1em;
	-webkit-animation: ticker 5s linear infinite;
	animation: ticker 5s linear infinite;
}
.ticker::after {
	content: "...";
}
