@charset "utf-8";

/*

CSS Document 
Dark 28
2025 Nov 8
2026 Feb 22

*/

:root {
	color-scheme: dark;
	font-size: 1.2rem;
	--background: #181818;
	--logo-gray: #343438;
	--button-text-color: #d2d2d3; /* c5c5c7 */
	--led-hover-color: #33a0ff;
	
	--rust: #d67200;
	--green-lemon: #cfd600;
	--unicorn-blood: hsl(332, 100%, 42%); /* d60064 c06 */
	--dried-unicorn-blood: hsl(332, 100%, 25%);
	--baby-unicorn-blood: hsl(332, 100%, 70%);

	--blue-midnight: hsl(240, 100%, 25%);
	--blue-nights: hsl(204, 100%, 40%);
	--blue-sky: hsl(204, 100%, 50%);
	--blue-blush: hsl(204, 100%, 65%);
	--cyan-deep: hsl(167, 98%, 8%);
	--cyan: hsl(167, 98%, 42%);
	--cyan-nights: hsl(167, 98%, 33%);
	--cyan-blush: hsl(167, 98%, 57%);
	--gold: hsl(48, 100%, 50%);
	--gold-earth: hsl(48, 100%, 18%);
	--gold-rust: hsl(48, 100%, 38%);
	--gold-blush: hsl(48, 100%, 65%);
	--magenta-deep: hsl(288, 100%, 10%);
	--magenta: hsl(288, 100%, 50%);
	--magenta-light: hsl(288, 100%, 70%);
	--magenta-blush: hsl(288, 100%, 78%);
}

*, *:after, *:before {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	font: inherit;
}

img, picture, svg, video {
	display: block;
	max-width: 100%;
	height: auto;
}


@font-face {
	font-family: 'Roboto Condensed';
	src: url('../RobotoCondensed-Regular.woff2') format('woff2'),
			 url('../RobotoCondensed-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Roboto';
	src: url('../Roboto-Regular.woff2') format('woff2'),
			 url('../Roboto-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Roboto';
	src: url('../Roboto-Italic.woff2') format('woff2'),
			 url('../Roboto-Italic.woff') format('woff');
	font-style: italic;
}

@keyframes blink { 
	0% {opacity: 0}
	49%{opacity: 0}
	50% {opacity: 1}
}

@keyframes color {
  0% {
    background-color: #0066e7;
  }
  50% {
    background-color: #008ce7;
  }
  100% {
    background-color: #0066e7;
  }
}

body	{
	background-color: var(--background);
	font-family: 'Roboto', sans-serif;
	line-height: 1.3;
	color: #c5c5c7; /* c5c5c7 b5b5b7 b7b8b9 9c9d9e dcdcdf d4d4d6 e7e7e9 c6c6c8 */
}

.box {
	background-color: limegreen;
	width: 25rem;
	aspect-ratio: 1 / 1;
	position: fixed;
	inset: 0rem;
	margin: auto;
}

a:link, a:visited	{
	text-decoration: none;
	color: var(--blue-sky);
}

a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: .2rem;
	color: var(--blue-blush);
}

.masthead	{
	overflow: hidden;
	position: relative;
	padding-inline: 5px;
	border-top: 3px solid black;
}

.trim {
	height: 10px;
	background-color: var(--logo-gray);
	border-top: 1px solid #434343;
}

.color-0 {
	background-color: #07f;
	margin: 0 3px;
}

.color-1	{
	background-color: var(--blue-sky); /* 05f 07f 06f ec4e20 e0e2db e6af2e -- e0e 06f */
}

.color-2	{
	background-color: #BF40BF; /* 09f f86 906 hsl(10, 90%, 72%); #F88D78 07f */
}

.color-3	{
	background-color: #7CFC00 /* 07f 5dd 690 609 #53d6e9; /* 53D6E9 5c0 */
}

.color-4 {
	background-color: #fc0; /* 6cf f60 cdc1ff FC4BB0 8b46ed 81aa99 81a09b #DD5CFE #FC4BB0 #9CB1FD #CDC1FF 70f */
}

.blinker,
.blinker-2,
.blinker-3,
.blinker-4 {
	margin: 0 !important;
	background-color: #07f; /* 6cf */
	animation: blink 2000ms;
}

.blinker {
	animation-delay: 100ms;
}

.blinker-2 {
	animation-delay: 200ms;
}

.blinker-3 {
	animation-delay: 300ms;
}

.blinker-4 {
	animation-delay: 400ms;
}

.vent	{
	border-top: 2px solid #333334; /* 3c3d3f */ 
	border-bottom: 3px solid #010101;
	border-radius: 4px;
}

.top-vent {
	border-radius: 0 0 4px 4px;
}

.banner	{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 88px;
	padding-inline: 1rem;
	background-color: var(--logo-gray);
	border-top: 1px solid #434343;
	border-radius: 0 0 20px 20px;
	filter: drop-shadow(0 4px 4px black);
	flex-wrap: nowrap;
	gap: 2rem;
	@media (width < 650px) {
		height: 78px;
		gap: 1rem;
	}
}

.url-wrapper	{
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: space-between;
	align-items: center;
	min-height: 44px; /* 32 */
	padding-inline: .75rem;
	background-color: #1e1e1f;
	border-right: 1px solid #434343;
	border-bottom: 1px solid #434343;
	border-radius: 100vmax;
	box-shadow: inset 1px 1px 5px black;
	text-align: center;
	@media (width < 560px) {
		grid-template-columns: 1fr 1fr;
	}
}

.url-wrapper a {
	color: #727279; /* 6c6c6e */
	text-shadow: 2px 2px black;
}

.url-wrapper a:hover {
	text-decoration: none;
}

.my-url {
	font-family: 'Roboto Condensed';
	text-box: trim-both cap alphabetic;	
	@media (width < 560px) {
		display: none;
		/* display: grid;
		place-items: center;
		height: 28px;
		position: absolute;
		top: -13px;
		left: 50%;
		z-index: 1;
		transform: translate(-50%, -50%); */
	}
}

.led-row {
	display: flex;
	gap: .75rem;
	@media (width < 650px) {
		gap: .5rem;
	}
}

.led {
	width: 22px;
	height: 22px;
	background: radial-gradient(#5a5a5c, black);
	outline: 1px solid #484849;
	border-radius: 100%;
}

.led > div {
	width: 22px;
	height: 22px;
}

.first-led {
	animation: blink 2500ms infinite;
}

.second-led {
	animation: blink 2000ms infinite;
}

.third-led {
	animation: blink 2400ms infinite;
}

.led-blue {
	border-radius: 100%;
	background: radial-gradient(var(--blue-blush), var(--blue-sky), var(--blue-nights), var(--blue-midnight));
	border: 1px solid var(--blue-blush);
}

.led-magenta {
	border: 1px solid var(--magenta-blush);
	border-radius: 100%;
	background: radial-gradient(var(--magenta-blush), var(--magenta-light), var(--magenta), var(--magenta-deep));
	/* animation: blink 2500ms infinite; */
}

.led-gold {
	border: 1px solid var(--gold-blush);
	border-radius: 100%;
	background: radial-gradient(var(--gold-blush), var(--gold), var(--gold-rust), var(--gold-earth));
	/* animation: blink 2000ms infinite; */
}

.led-red {
	border: 1px solid #f00;
	border-radius: 100%;
	background: radial-gradient(#ff4d4d, #c40000, black);
	animation: blink 2500ms infinite;
}

.led-cyan {
	border: 1px solid var(--cyan-blush);
	border-radius: 100%;
	background: radial-gradient(var(--cyan-blush), var(--cyan), var(--cyan-nights), var(--cyan-deep));
	
}

.squares {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-items: center;
	row-gap: 1rem;
}

.color-square {
	display: block;
	width: 100%;
	height: 100px;
	padding: .75rem;
	color: white;

}

.magenta-deep {
	background-color: var(--magenta-deep);
}

.magenta {
	background-color: var(--magenta);
}

.magenta-light {
	background-color: var(--magenta-light);
}

.magenta-blush {
	background-color: var(--magenta-blush);
}

.blue-midnight {
	background-color: var(--blue-midnight);
}

.blue-nights {
	background-color: var(--blue-nights);
}

.blue-sky {
	background-color: var(--blue-sky);
}

.blue-blush {
	background-color: var(--blue-blush);
}

.gold {
	background-color: var(--gold);
}

.gold-earth {
	background-color: var(--gold-earth);
}

.gold-rust {
	background-color: var(--gold-rust);
}

.gold-blush {
	background-color: var(--gold-blush);
}

.cyan {
	background-color: var(--cyan);
}

.cyan-deep {
	background-color: var(--cyan-deep);
}

.cyan-nights {
	background-color: var(--cyan-nights);
}

.cyan-blush {
	background-color: var(--cyan-blush);
}

.led-alarm {
	border: 1px solid #f00;
	border-radius: 100%;
	background: radial-gradient(#f00, #c40000, black);
	animation: blink 500ms infinite;
}

.toggle-wrapper {
	display: flex;
	justify-content: flex-end;
}

.toggle-rail {
	display: flex;
	align-items: center;
	width: 60px;
	height: 28px;
	border-radius: 100vmax;
	border: 1px solid #484849;
	background-color: #131315;
	box-shadow: inset 2px 2px 7px black;
	padding-left: 1px;
	transition: 300ms ease;
}

.toggle-button {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: radial-gradient(#505052, #161618);
	transition: 300ms ease;
}

.toggle-rail:hover,
.toggle-rail:active {
/*	justify-content: flex-end;*/
	background-color: var(--blue-sky);
/*	transition: 500ms;*/
	box-shadow: inset 1px 1px 7px #00008b;
	border-color: var(--blue-sky);
}

.toggle-rail:hover .toggle-button,
.toggle-rail:active .toggle-button  {
/*	transition: 300ms;*/
	background: radial-gradient(#303032, #141416);
	translate: 33px 0;
}

.toggle-rail-on {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 60px;
	height: 28px;
	border-radius: 100vmax;
	border: 1px solid var(--blue-sky);
	background-color: var(--blue-sky);
	box-shadow: inset 1px 1px 7px #00008b;
	padding-left: 1px;
	transition: 300ms ease;
}

.toggle-button-on {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: radial-gradient(#303032, #141416);
	transition: 300ms ease;
}

.metalink {
	text-align: right;
}

.screwhead	{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(#646466, #323232, #181818);
	border-radius: 100%;
	box-shadow: 2px 2px 4px black;
	text-align: center;
	text-decoration: none;
	font-family: Georgia, system-ui;
	font-size: 1.2rem;
	color: #101012;
	text-shadow: 1px 1px #444;
}

.turned {
	rotate: 20deg;
}

.tabs	{
	display: flex;
	justify-content: center;
	height: 80px;
	gap: .6rem; 
}

.tab {
	position: relative;
}

.tab a	{
	display: block;
	overflow: hidden;
	position: relative;
	margin-top: -1px;
	width: 148px; /* 170 150 */
	height: 60px;
	padding-top: 15px;
	background: linear-gradient(var(--logo-gray) 51%, #1c1c1f);
	border-radius: 0 0 10px 10px;
	box-shadow: 0 4px 4px -2px black;
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	font-size: .85rem;
	color: var(--button-text-color); 
	line-height: 1;
	text-decoration: none;
	text-shadow: 1px 1px black;
	/* text-box: trim-both cap alphabetic; */
}

.tab a:hover {
	text-decoration: none;
	padding-top: 23px;
	transition: 300ms ease;
	height: 68px;
}

.tab a:hover::after {
	transition: 300ms ease;
}

.tab a::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 100vh;
	position: absolute;
	bottom: 12px;
	left: 12px;
	border: 1px solid #484849;
	background: radial-gradient(#414143, black);
}

.tab a:hover::before {
	background: radial-gradient(var(--blue-blush), var(--blue-sky), var(--blue-nights),  var(--blue-midnight));
	border-color: var(--blue-blush);
}

.red-flasher a::after	{
	content: '';
	width: 20px;
	height: 20px;
	border: 1px solid #f00;
	border-radius: 100%;
	background: radial-gradient(#ff4d4d, #c40000, black);
	position: absolute;
	bottom: 12px;
	left: 12px;
	animation: blink 1200ms linear infinite;
}

.red-flasher a:hover::after {
	display: none;
}

/* ======= Logo ============================================== */

.logoWrap	{
	margin-inline: auto; /* 190 138 */
	width: 142px;
	height: 142px; /* 142 */
	position: relative;
	z-index:1;
}

.logoRound	{
	position: absolute; 
	top:0;
	left:0;
	width: 142px;
	height: 142px;
	background-color: var(--logo-gray);
	border-radius: 71px;
	z-index:2;
}

.logoRound-inner	{
	position: absolute;
	top: 18px;
	left: 17px;
	width: 108px;
	height: 108px;
	z-index: 3;
	border-radius: 54px;
	background-color: var(--background);
}

.logoVertical-bg	{
	position: absolute;
	top:0;
	left:26px;
	width: 90px;
	height: 90px;
	background-color: var(--background); 
	z-index: 4;
}

.logoJ-bg	{
	position: absolute;
	top:0;
	left:39px;
	width: 64px;
	height: 96px;
	background: linear-gradient(to bottom right, #00f, #06f, #0bf); /* 00f 06f 00bf dark medium light */
	/* MSE fix */
	border-radius: 0 0 10px 10px;
	z-index: 5;
}

.logoJ-center	{
	position: absolute;
	top:0;
	left:54px;
	width: 34px;
	height: 82px;
	background-color: var(--background);
	border-radius: 0 0 4px 4px;
	z-index: 6;
}

.logoJ-coverup	{
	position: absolute;
	top:0;
	left:33px;
	width: 28px;
	height: 70px;
	background-color: var(--background);
	border-radius: 0 0 4px 4px;
	z-index: 7;
}

.logoVerticalBar	{
	position: absolute;
	top: 0;
	left:64px;
	width: 15px;
	height: 74px;
	background-color: var(--logo-gray);
	z-index: 8;
}

.logoVerticalBar-short	{
	position: absolute;
	bottom:4px;
	left:64px;
	width: 15px;
	height: 34px;
	background-color: var(--logo-gray);
	z-index: 9;
}

.logoCap	{
	position: absolute;
	top:0;
	left:28px;
	width: 75px;
	height: 12px;
	background-color: var(--background);
	z-index: 10;
}

/* ======= Main Content Containers ============================================== */

main {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-block: 2rem;
	padding-inline: 3rem;
	/* border: 1px solid darkgray; */
	@media (width < 840px) {
		padding-inline: 1.5rem;
	}
}

main :first-child,
article :first-child,
.blog :first-child {
	margin-top: 0;
}

article {
	width: 100%;
	max-width: 840px;
	margin-inline: auto;
	padding-block: 2rem;
}

.blog {
	width: 100%;
	max-width: 840px;
	margin-inline: auto;
	padding-block: 2rem;
}

.content	{
	margin-inline: auto;
	width: 100%;
}

.content-2-column	{
	margin-inline: auto;
	width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-areas: 
	"first second";
	gap: 1.5rem;
/*	border: 1px solid hotpink;*/
}

.first {
	grid-area: first;
/*	border-right: 1px solid blueviolet;*/
}

.second {
	grid-area: second;
/*	border-left: 1px solid limegreen;*/
}

.edge {
	justify-self: end;
}


.start-left {
	text-align: left;
}

.even {
	grid-template-columns: 1fr 1fr;
}

h1, h2, h3, h4	{
	margin-block: 2rem;
	text-align: center;
	font-weight: normal;
	line-height: 1.2;
	text-box: trim-both cap alphabetic;
}

h1 { 
	font-size: clamp(1.2rem, 1.4rem + 0.99vw, 2.1rem);
}

.heading-border {
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--logo-gray);
	box-shadow: 0 1px 1px black;
}

article h1,
.blog h1 {
	margin-bottom: 0;
}

h2 {
	font-size: clamp(1.1rem, 1.1rem + 0.99vw, 1.65rem);
}

h3 {
	font-size: clamp(1.02rem, 1.05rem + 0.99vw, 1.48rem);
}

p {
	margin-block: 1.5rem;
	text-box: trim-both cap alphabetic;
}

.ntm	{
	margin-top: 0 !important;
}

.nbm {
	margin-bottom: 0 !important;
}

.nom {
	margin: 0 !important;
}

.postmeta	{
	padding: 5px 0;
	text-align: center;
	color: #88888f;
}

.note	{
	margin-block: 1.25rem;
	padding: 1rem;
	border: 2px solid var(--unicorn-blood); /* fc0 */
	border-radius: 10px;
	color: var(--unicorn-blood);
}

.note > *:first-child {
	margin-top: 0;
}

.note > *:last-child {
	margin-bottom: 0;
}

.note h2 {
	color: var(--unicorn-blood);
}

.border-red {
	border-color: #f30;
	color: #f30;
}

.border-red a {
	color: #f30;
	text-decoration: underline;
}

.border-red a:hover {
	color: #fff;
}

blockquote	{
	margin: 1rem auto;
	width: 90%;
	border-left: 5px solid #393940;
	padding: 15px 25px;
}

blockquote > *:first-child {
	margin-top: 0;
}

blockquote > *:last-child {
	margin-bottom: 0;
}

ul {
	margin-left: 2rem;
}

sup {
	vertical-align: super;
	font-size: smaller;
	color: #fc0;
	margin-top: -.5rem;
	margin-left: .2rem;
}

h2 sup {
	font-size: .9rem;
}	

.go-center,
.c	{
	text-align: center !important;
}

.go-right	{
	text-align: right !important;
}

.go-left	{
	text-align: left !important;
}

.go-bold	{
	font-weight: bold;
}

.go-gold {
	color: #fc0 !important;
}

.go-small	{
	font-size: .8rem !important;
}

.go-big {
	font-size: 1.2rem !important;
}

.go-dark {
	color: #58585f !important;
}

p.timestamp	{
	font-style: italic;
	font-size: 16px;
	color: #727279;
}

.highlight	{
	background-color: #fc0;
	color: black;
}

.it	{
	font-style: italic;
	padding-right: 2px;
}

.tred	{
	color: #f44; /* f20 */
}

.contact-data {
	text-align: center;
	font-size: 1.15rem;
}

.big-text	{
	font-size: 1.2rem;
}

.strike	{
	text-decoration: line-through;
}

.upper	{
	text-transform: uppercase;
}

.now	{
	white-space: nowrap;
}

.block-10 {
	height: 10px;
}

i	{
	font-style: normal;
}

i.qmark a	{
	display: inline-block;
	position: relative;
	margin: 0 5px;
	width: 28px;
	height: 28px;
	border: 2px solid #07f; /* c2c2c4 */
	border-radius: 14px;
	background-color: var(--background);
	text-align: center;
	line-height: 25px;
	font-weight: 700;
	text-decoration: none;
	font-style: normal;
	color: #07f;
}

i.qmark a:hover	{
	text-decoration: none;
	border-color: #0cf;
	color: #0cf;
	transition: .5s ease;
}

hr	{
	margin: 25px auto;
	border: 2px solid #323235;
	border-radius: 2px;
}

hr.ball	{
	width: 30px;
	height: 30px;
	background: radial-gradient(#656567, #28282a, black); /* f2f 000 */
	margin: 1.25rem auto;
	border-radius: 100%;
	border-width: 0;
	box-shadow: 2px 2px 2px black;
}

/* ========== Buttons ========== */

.buttons	{
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 1.25rem .3rem 1rem .3rem;
	gap: .75rem;
}

.center {
	justify-content: center;
	justify-items: center;
}

.w740 {
	max-width: 740px;
	margin-inline: auto;
}

.buttons a	{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	text-decoration: none;
	width: 220px;
	height: 44px;
	padding-right: 20px;
	background-color: var(--logo-gray);
	border-radius: 100vmax;
	box-shadow: 3px 2px 10px black;
	text-align: right;
	font-size: .85rem;
	line-height: 1;
	text-transform: uppercase;
	color: var(--button-text-color); 
	text-shadow: 1px 1px black;
}

.short a {
	width: 155px;
}

a.red {
	background-color: var(--unicorn-blood);
}

.long a {
	width: 100%;
	max-width: 280px;
}

.keyboard a {
	width: 110px;
	font-size: 1.4rem;
}

.buttons a::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #484849;
	background: radial-gradient(#414143, black);
	position: absolute;
	top: 12px;
	left: 12px;
}

.buttons a::after {
	content: '';
	display: block;
	width: 3px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 44px;
	background-color: #101010;
	border-right: 1px solid #444;
}

.buttons a.red::after {
	background-color: var(--dried-unicorn-blood);
	border-right-color: var(--baby-unicorn-blood);
}

.buttons a:hover {
	background-color: #29292b;
	box-shadow: 1px 1px 3px black;
	transition: 200ms ease;	
}

.buttons a.red:hover {
	background-color: hsl(332, 100%, 32%);
	box-shadow: 1px 1px 3px black;
	transition: 200ms ease;	
}

.buttons a:hover::before,
.buttons a:hover::after {
	transition: 200ms ease;
}

.buttons a:hover::before {
	background: radial-gradient(var(--blue-blush), var(--blue-sky), var(--blue-nights),  var(--blue-midnight));
	border-color: var(--blue-blush);
}

.buttons a:hover::after {
	border-right-color: #333;
}

.buttons a.red:hover::after {
	border-right-color: var(--baby-unicorn-blood);
}

.a-list {
	padding-block: .5rem;
	padding-inline: 1rem;
	width: fit-content;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid var(--logo-gray);
	border-radius: 1rem;
	background-color: #101010;
}

.a-list a {
	display: block;
	width: fit-content;
	margin-block: .75rem;
	padding-left: 1.55rem;
	position: relative;
}

.a-list a::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #484849;
	background: radial-gradient(#414143, black); /* BF40BF #d279d2,  */
	position: absolute;
	top: .22em;
	left: 0;
}

.a-list a:hover::before {
	border-color: var(--led-hover-color);
	background: radial-gradient(var(--led-hover-color), black);
}

.up a	{
	display: flex;
	overflow: hidden;
	padding: 1.15rem;
	z-index: 999;
	display: none;
	cursor: pointer;
	position: fixed;
	bottom: 50px;
	right: 50px;
	background-color: #323236; /* 668882 70f 909 */
	border-radius: 100%;
	box-shadow: 2px 3px 4px black;
	text-decoration: none;
	justify-content: center;
	align-items: center;
}

.up a:hover	{
	background-color: #262628; /* 5300b2 */
	box-shadow: 1px 1px 3px black;
	transition: 300ms ease;
}

.arrow-up	{
	margin: 10 auto;
	width: 28px;
	height: 28px;
	border: solid #d7d7d9;
	border-width: 0 6px 6px 0;
	rotate: -135deg;
	translate: 0 .25rem;
/*	transform: rotate(-45deg);*/
}

.arrow	{
	margin: 0 auto;
	transform: rotate(-135deg); /* -135 */
	height: 20px;
	width: 20px;
	border-bottom: 6px solid #fff;
	border-right: 6px solid #fff;
}

.up a:hover .arrow	{
	background-color: #262628;
	transition: 300ms ease;
}

@media (max-width: 610px) {

.up a	{
	box-shadow: 0 0 10px black;
	bottom: 14px;
	right: 14px;
	}
}

/* =========== Blogging ============================================================ */


.blogrow	{
	display: flex;
	margin-block: 1rem;
	gap: 1rem;
/*	border: 1px solid pink;*/
}

.blogpost a	{	
	font-size: 1.2rem;
	line-height: 1;
}

.page	{
	width: 46px;
	height: 60px;
	padding: 10px 5px;
	border: 2px solid #525255; /* 949496 */
	border-radius: 4px;

}

.page::before {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	margin: 0 auto;
	background-color: #525255;
}

.page-text {
	margin-top: 6px;
	height: 27px;
	position: relative;
	border-top: 3px solid #525255;
	border-bottom: 3px solid #525255;
}

.page-text::before {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 5px;
	background-color: #525255;
}

.page-text::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 13px;
	background-color: #525255;
}

.bpic {
	margin: 5px auto 0 auto;
	height: 20px;
	border: 1px solid #525255;
}

.pics	{
	display: block;
	margin: 28px auto 31px auto;
	max-width: 100%;
	height: auto;
}

.datsme {
	width: 100%;
	max-width: 340px;
	margin-top: 1rem;
	margin-inline: auto;
	padding-top: 20px;
	background-color: #101010;
	border: 1px solid var(--logo-gray);
}

.datsme > img {
	filter: grayscale(100%);
}

img.shade {
	filter: brightness(50%);
	transition: all 1s ease;
}

img.shade:hover {
	filter: brightness(100%);
}

img.rounded-10 {
	border-radius: 10px;
}

img.rounded-15 {
	border-radius: 15px;
}

img.rounded-20 {
	border-radius: 20px;
}

.caption	{
	margin-top: -18px;
	padding-bottom: 10px;
	text-align: center;
	font-size: .88rem;
}

/* =========== Blink Animation ============================================================ */

.blinky	{
	animation: blink 1.5s linear infinite;
}

.arrow-down,
.arrow-down-flash	{
	margin: 0 auto;
	width: 20px;
	height: 20px;
	border: solid #e0e;

	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
}

.arrow-down-flash	{
	animation: blink 1.2s linear infinite;
}

.flasher	{
	display: inline-block;
	margin: 0 8px 0 0;
	width: 13px;
	height: 13px;
	background-color: #fc0;
	border-radius: 50%;
	animation: blink 1.2s linear infinite;
}

.magenta {
	background-color: #e0e !important;
}

.fred {
	background-color: #f00 !important;
}


/* =========== Footer ============================================================ */

footer	{
	padding: 2rem 2px;
	box-shadow: inset 0 12px 20px -12px black;
	text-align: center;
	font-size: .88rem;
	color: #727279;
}

footer a:link,
footer a:visited	{
	color: #727279;
}

footer a:hover	{
	color: #e0e0e3;
	text-decoration: underline;
}


.footer-line-1 {
	margin-inline: auto;
	width: 240px;
	height: 10px;
	border-top: 3px solid var(--blue-sky);
}

.footer-line-2 {
	margin-inline: auto;
	width: 180px;
	height: 10px;
	border-top: 3px solid #c00;
}

.footer-line-3 {
	margin-inline: auto;
	width: 120px;
	height: 10px;
	border-top: 3px solid #fc0;
}

.footer-line-4 {
	margin-inline: auto;
	width: 60px;
	height: 10px;
	border-top: 3px solid #00cd00;
}

.dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px auto;

}

.dot {
	margin: 0 5px;
	width: 14px;
	height: 14px;
	border-radius: 7px;
	
}


.footer-led-wrap	{
	display: flex;
	margin-top: 1rem;
	overflow: hidden;
	justify-content: center;
	gap: .5rem;
}

.footer-led	{
	width: 14px;
	height: 14px;
	border-radius: 7px;
}


/* ============================ @ Media ================================================================== */

@media (max-width: 1370px) {
	.tab a:hover,
	.tab a:hover::after,
	.buttons a:hover,
	.buttons a:hover::before,
	.buttons a:hover::after,
	.up a:hover,
	.up a:hover .arrow,
	.toggle-rail,
	.toggle-button  {
		transition: none;
	}
}


@media (max-width: 1040px)	{

.up a	{
	bottom: 25px;
	right: 25px;
	}

}

@media (min-width: 800px) {

	.hide-desktop {
		display: none;
	}
}

	@media (max-width: 800px) {

		.hide-mobile {
			display: none;
		}

		.content-2-column,
		.even {
		grid-template-columns: 1fr;
		grid-template-areas: 
		"first"
		"second"
	}

	.reverse {
		grid-template-areas: 
		"second"
		"first"
	}

	.edge {
		justify-self: center;
	}

.wrap-first {
  grid-column: 1;
  grid-row: 1;
}

	.gap-border,
	.gap-no-border {
		display: none;
	}
	.start-left {
		text-align: center;
	}
}

@media (max-width: 840px)	{

blockquote	{
	width: 100%;
	margin: 35px 0 35px 20px;
	padding: 10px 10px 10px 20px;
	}

.note {
	width: 100%;
	padding: 20px;
	}
}

@media (max-width: 480px)	{

	.long a {
		width: 320px;
	}

	.a-list a::before {
		top: .2em;
	}
}

@media (max-width: 340px) {

	.banner {
		gap: .75rem;
		padding-inline: .5rem;
	}

	.led-row {
		align-items: center;
		justify-content: center;
	}

	.screwhead {
		width: 40px;
		height: 40px;
	}

	.toggle-wrapper {
		display: none;
	}
}


