/*
Author: Foxxwork Creative by Ariana Farquharson
Author URI: https://foxxwork.com
Description: A Division of Foxxwork Creative
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

*, *:after, *:before {
	-webkit-box-sizing: border-sizing;
	-moz-box-sizing: border-sizing;
		box-sizing: border-sizing;
}
html {
	font-size: 16px;
	scroll-behavior: smooth;
}
body {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Work Sans',serif;
	background-color: #0e1919;
	margin: 0;
	padding: 0;
}
::selection {  /* WebKit/Blink Browsers */
	color: #fff;
	background: red;
	opacity: 1;
}
::-moz-selection { /* Gecko Browsers */
	color: #fff;
	background: red;
	opacity: 1;
}

.bg-gradient, .bg-overlay {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
}
.bg-gradient {
	z-index: 0;
	background-image: radial-gradient(#0E1919, #422878, #9370DB);
	-webkit-animation: gradient_blur 5s infinite;
	animation: gradient_blur 5s infinite;
}
.bg-overlay {
	z-index: 1;
	background-color: rgba(14,25,25,0.35);
	filter: blur(8px);
  -webkit-filter: blur(8px);
}

/* ===== Themes ===== */
.fxxwrk-theme-blue {
	background-color: #061A34;
}
.fxxwrk-theme-blue h1,
.fxxwrk-theme-blue h2,
.fxxwrk-theme-blue h3,
.fxxwrk-theme-blue h4,
.fxxwrk-theme-blue h5,
.fxxwrk-theme-blue h6,
.fxxwrk-theme-blue p {
	color: #fff;
}

/* ===== Layout ===== */
.inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
}
.site-main {
	width: 100vw;
	height: 100vh;
	position: relative;
	z-index: 99;
}
#canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}

/* ===== Typography ===== */
h1 {
	font: normal normal 200 74px/1 'tenez',serif;
	text-transform: lowercase;
	margin: 0 0 20px;
}
h2, .subtitle {
	font: normal 700 10px/1 'Work Sans',serif;
	text-transform: uppercase;
	letter-spacing: 4px;
}
h2 a {
	color: #fff;
	border-bottom: 1px dotted #fff;
	padding-bottom: 3px;
}
h2 a:hover {
	color: inherit;
	border-bottom: 1px solid #fff;
	text-decoration: none;
}
.subtitle {
	margin-bottom: 10px;
}
p {
	font: normal 200 18px/1.6 'Work Sans',serif;
	margin-top: 30px;
}
p em {
	font-style: italic;
}
a, :hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a, button {
	cursor: url('img/cursor-point.png'), default; 
}
button:focus {
	border: none;
	outline: none;
}
.tenez {
	font-family: 'tenez',serif;
}
.work-sans {
	font-family: 'Work Sans',sans-serif;
}
.font-size-12 {
	font-size: 12px;
}

/* ===== Colors ===== */
.bg-purple0 {
	background-color: mediumpurple;
}
.bg-purple1 {
	background-color: #8741e8;
}
.bg-purple2 {
	background-color: #660099;
}
.bg-green {
	background-color: #990;
}
.txt-white {
	color: #fff;
}
.txt-green-1 {
	color: #1a2f30;
}
.txt-tan-1 {
	color: tan;
}
.txt-blue-1 {
	color: #007bff;
}
.text-center {
	text-align: center;
}

/* ===== Footer ===== */
#page-footer {
	display: block;
	position: fixed;
	bottom: 10px;
	right: -210px;
	z-index: 999;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}
#page-footer p {
	color: #fff;
	font: normal 300 14px/1 'tenez',serif;
	text-transform: lowercase;
}
#page-footer p .work-sans {
	font-size: 11px;
}
#page-footer p a {
	color: #fff;
	font: normal 700 11px/1 'Work Sans',sans-serif;
	text-decoration: underline;
}
#page-footer p a svg {
	display: none;
	position: relative;
	top: 4px;
	left: 4px;
}



@media screen and (max-width: 640px) {
	h1 {
		font-size: 48px;
		line-height: 1;
		margin-top: 20px;
	}
	.subtitle, h2 {
		line-height: 1.4;
	}
	p {
		line-height: 1.2;
	}
	.inner,
	.site-footer ul {
		width: 70%;
	}
	br {
		display: inline-block;
	}
	.text-center {
		text-align: left!important;
	}
	.site-footer ul {
		bottom: 30px;
		right: auto;
		text-align: left;
		margin: 0 15%;
	
		-ms-transform: none;
		-webkit-transform: none;
		transform: none;
	}
	.site-footer ul li {
		margin-right: 15px;
	}
}