:root {
	--reticle-cursor: url('../crosshair-cursor.svg') 16 16, crosshair;
}
html {
	font-size: 20px;
	background-color: #000000;
	cursor: var(--reticle-cursor);
	overflow: hidden;
}
body {
	text-align: center;
	background-color: #000000;
	color: #f5f5f5;
	cursor: var(--reticle-cursor);
	isolation: isolate;
	overflow: hidden;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
a {
	color: #6fb3f2;
	cursor: var(--reticle-cursor);
}
a:hover,
a:focus {
	color: #9ecbf5;
}

#knoxdevs-tagline { 
	font-size: 50px;
}

@media(max-width:60em){ #knoxdevs-tagline{ font-size: 30px;}}

#github-call-to-action {
	padding-top: 30px;
}

/* Let clicks pass through empty/transparent gaps in the layout wrappers
   straight to whatever is behind them (e.g. a floating head); only the
   actual visible content should be able to block a click. */
.container {
	pointer-events: none;
}
.container h1,
.container h3,
.container img,
.container a {
	pointer-events: auto;
}

/* Wrapper */
.icon-button {
	background-color: #ccc;
	border-radius: 1.8rem;
	cursor: var(--reticle-cursor);
	display: inline-block;
	font-size: 1.0rem;
	line-height: 1.8rem;
	margin: 0 0px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	height: 1.8rem;
	width: 1.8rem;
}
.dislodged {
	box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.6);
}

/* Circle */
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}
.icon-button:hover span {
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 3.6rem;
	margin: -.9rem;
}
.twitter span {
	background-color: #4099ff;
}
.facebook span {
	background-color: #3B5998;
}
.google-plus span {
	background-color: #db5a3c;
}
.github span {
	background-color: #333333;
}
.linkedin span {
	background-color: #007bb6;
}
.profile-image {
	border: 1px solid #f5f5f5;
}
.floating-head {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: -1;
	will-change: transform;
}

/* Duck Hunt-style muzzle flash shown at the click point on every shot */
.shot-flash {
	position: fixed;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	margin-left: -35px;
	margin-top: -35px;
	border-radius: 50%;
	border: 4px solid #f5f5f5;
	pointer-events: none;
	z-index: 10000;
	animation: shot-flash-anim 0.35s ease-out forwards;
}
.shot-flash-hit {
	border-color: #ffcc33;
}
@keyframes shot-flash-anim {
	0% {
		transform: scale(0.2);
		opacity: 1;
	}
	60% {
		transform: scale(1);
		opacity: 0.9;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}
.my-name {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.my-title {
}
.bounce-line {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

/* Vintage arcade brick wall framing the content */
.brick {
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.55);
	box-shadow:
		inset 2px 2px 0 rgba(255, 255, 255, 0.35),
		inset -2px -2px 0 rgba(0, 0, 0, 0.35);
	cursor: var(--reticle-cursor);
	pointer-events: auto;
	z-index: 5;
}

.brick-fragment {
	position: fixed;
	top: 0;
	left: 0;
	width: 6px;
	height: 6px;
	pointer-events: none;
	z-index: 6;
	animation: brick-fragment-anim 0.5s ease-out forwards;
}
@keyframes brick-fragment-anim {
	0% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translate(var(--dx), var(--dy)) rotate(var(--rot));
		opacity: 0;
	}
}



/* Icons */
.icon-button i {
	background: none;
	color: white;
	height: 1.8rem;
	left: 0;
	line-height: 1.8rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 1.8rem;
	z-index: 10;
}
.icon-button .fa-twitter {
	color: #4099ff;
}
.icon-button .fa-facebook {
	color: #3B5998;
}
.icon-button .fa-google-plus {
	color: #db5a3c;
}
.icon-button .fa-linkedin {
	color: #007bb6;
}
.icon-button .fa-github {
	color: #333333;
}
.icon-button:hover .fa-twitter,
.icon-button:hover .fa-facebook,
.icon-button:hover .fa-linkedin,
.icon-button:hover .fa-github,
.icon-button:hover .fa-google-plus {
	color: white;
}