/* HI THERE! WELCOME TO SINAPSIS, WE ARE CURRENTLY SERVING MAYHEM */

/* HI THERE! WELCOME TO SINAPSIS, WE ARE CURRENTLY SERVING MAYHEM */

/* MAP: */
/* 0. RESET RULES ------------------ */
/* 1. EMBEDED FONTS ---------------- */
/* 2. DESIGN SPECS VARIABLES ------- */
/*    Colors, Fonts, Dimensions ---- */
/* 3. HELPERS ---------------------- */
/* 4. Z-INDEXING ------------------- */
/* 5. ELEMENTS --------------------- */
/*    ATOMS / MOLECULES / ORGANISMS- */
/* 6. TEMPLATES -------------------- */
/* 7. PAGES ------------------------ */



/* 1. RESET RULES ------------------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: none;
}
html {
	min-height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	overflow: auto;
}
body {
	font-size: 62.5%;
	line-height: 1;
	font-family: Arial, Tahoma, sans-serif;
	word-break: break-word;
	hyphens: auto;
	margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong { font-weight: bold; }
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0 !important; max-width: 100%; display:block;}
p { font-size: 1.2em; line-height: 1.0em; margin: 0;}
a {text-decoration: none;}
a:hover {cursor: pointer !important;}
a:focus {outline: none;}
input {-webkit-appearance: none !important;}
input[type='submit']:focus {outline: none;}
input[type='button']:focus {outline: none;}
/* ENDS RESET RULES -------------------------------------------------------------------- */



/* 2. DESIGN SPECS VARIABLES */

:root {
	--white: 216, 218, 236;
	--black: 2, 7, 17;
	--black-blue: 4, 21, 41;
	--blue-highlight: 76, 192, 245;
	--blue-highlight-saturated: 11, 80, 220;
	--green-highlight: 154, 211, 45;
}

::-moz-selection {
	background: rgb(var(--blue-highlight-saturated)) !important;
	color: rgb(var(--white)) !important;
}

::selection {
	background: rgb(var(--blue-highlight-saturated))  !important;
	color: rgb(var(--white)) !important;
}


/* 3. UNITS & HELPERS ---------------------------------------- */

.layer {
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto 0 auto;
}

.clearer {
	clear: both;
	width: 100%;
	height: 1px;
	display: block;
}

.hide {
	display: none;
}

.s5,
.s10,
.s15,
.s20,
.s25,
.s30,
.s40,
.s50,
.s60,
.s70,
.s80,
.s90,
.s100 {
	clear: both;
	display: block;
	width: 100%;
}

.s5		{ height: 5px; 	}
.s10	{ height: 10px; }
.s15	{ height: 15px; }
.s20	{ height: 20px; }
.s25	{ height: 25px; }
.s30	{ height: 30px;	}
.s40	{ height: 40px;	}
.s50	{ height: 50px;	}
.s60	{ height: 60px;	}
.s70	{ height: 70px;	}
.s80	{ height: 80px;	}
.s90	{ height: 90px;	}
.s100	{ height: 100px;}

.line {
	clear: both;
	width: 100%;
	height: 1px;
	display: block;
}

.lineWhite {
	background-color: rgba(var(--white), .2);
}

.wrapper-fullWidth {
	width: 100%;
}

.wrapper-mainWidth {
	width: 82%;
	max-width: 1000px;
	margin: 0 auto 0 auto;
}

.wrapper-artPiece {
	position: relative;
}

.content {
	color: rgb(var(--white));
	font-family: 'Play', sans-serif;
	text-align: justify;
}

.content h1 {
	font-family: 'Gugi', sans-serif;
	font-size: 70px;
}

.content h2 {
	font-size: 22px;
	line-height: 28px;
}

.content h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 32px;
}

.content h4 {
	font-size: 20px;
	line-height: 32px;
}

.content p {
	font-size: 16px;
	line-height: 32px;
}

.content a,
.content a:visited {
	color: rgba(var(--blue-highlight), 1);
	border-bottom: 1px solid rgba(var(--blue-highlight), 1);
}

.content .uppercase {
	text-transform: uppercase;
}

.content .footnote {
	font-size: 12px;
}

.content .footnote i {
	padding-right: 4px;
}

.nftCard {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 16px;
	border-radius: 4px;
	background-color: rgba(var(--black), .4);
}

.nftCard .nftCardButton {
	display: inline-block;
	border-radius: 4px;
	background-color: rgba(var(--blue-highlight-saturated), 1);
	color: rgba(var(--white), .7) !important;
	font-size: 16px;
	font-weight: 700;
	line-height: 14px;
	padding: 14px 24px;
	border: none;
	transition: color .3s;
}

.nftCard a:hover.nftCardButton {
	cursor: pointer;
	color: white !important;
}

/* 4. Z-INDEXING ---------------------------------------- */


/* 5. ELEMENTS ------------------------------------------ */
/*    ATOMS / MOLECULES / ORGANISMS- */

body {
	background-color: rgb(var(--black-blue));
}

.genesisDance {
	height: 400px;
	width: 82%;
	max-width: 1600px;
	margin: 0 auto 0 auto;
	display: block;
	border: 1px solid rgba(var(--black), .2);
}

@media screen and (min-width: 900px) {
	.genesisDance {
		height: 690px;
	}
}

.genesisDance-samples {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	overflow: hidden;
}

.genesisDance-samples div {
	width: 100%;
	margin-bottom: 20px;
}

@media screen and (min-width: 680px) {
	.genesisDance-samples {
		width: 100%;
		max-width: 820px;
		margin: 0 auto;
		overflow: hidden;
	}
	
	.genesisDance-samples div {
		float: left;
		width: calc(50% - 10px);
		margin-right: 20px;
		margin-bottom: 20px;
	}

	.genesisDance-samples div:nth-child(even) {
		margin-right: 0;
	}
}

.youtubeEmbed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; 
	height: 0;
}

.youtubeEmbed iframe {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* FOOTER */
#footer {
	text-align: center;
}

#footer i {
	font-size: 14px;
}

/* 6. TEMPLATES -------------------- */
/* 7. PAGES ------------------------ */

