@charset "utf-8";
/* CSS Document */


/* CSS RESET, defaults */
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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Roboto', sans-serif;
	margin: 0px;
	font-size: medium;
	min-width: 350px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
p {
	padding: 10px;
}

/* Makes all A-Href have nice slow transitions on hover */
a {
	font-weight: bold;
	-webkit-transition: all .1s ease-out;
	transition: all .1s ease-out;
	color: #69F;
	text-decoration: none;
}
a:hover {
	-webkit-transform: 1.00 !important;
	-ms-transform: 1.00 !important;
	transform: 1.00 !important;
	color: black;
	text-decoration: none;
}


/* Stretch to full-screen, regardless of screen size */ 

.fullbg {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: grey;
	background-image: url(resources/background2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

/* Container for Video frame */
.content1 {
	margin: 3%;
	text-align: center;
	width: auto;
	height: auto;
	width: 55%;
	height: 50%;
	float: left;
	display: block;
	padding-top: 5%;
}

/* Container for words and stuff frame */
.content2 {
	position: absolute;
	right: 0;
	float: right;
	width: 25%;
	height: 100%;
	color: #222f62;
	background-color: rgba(255, 255, 255, 0.2);
	text-align: center;
	overflow: visible;
}

/* Padding for stuff frame, cant be included in .content2 because it breaks stuff */
.content2pad {
	margin-left: 5%;
	margin-top: 5%;
	width: 90%;
}

/* Link hover effects */
.content2 a {
	opacity: 1.0;
	filter: alpha(opacity=100);
}
.content2 a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}


/* This is complicated and makes sure the Video frame stays the correct dimensions */
.vidBigbox {
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	width: 100%;
 */ border: 3px solid blue;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
 */ border: 3px solid red;
}


/* Album art config */
.albumart {
	width: 100%;
	border: 2px solid white;
	margin-bottom: 10px;
	margin-top: 10px;
}

.albumtitle {
	width: 100%;
}
.albumartist {
	width: 100%;
}





/* Facebook-follow configuration */
.fb-follow {
	padding-left: 10px;
	width: 90%;
	overflow: hidden;
 */ border: 3px solid green;
}


/* Deprecated, now using images instead. */
h1 {
	font-family: "微软雅黑", Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 60px;
	letter-spacing: -3px;
	background: -webkit-linear-gradient(#09C, #039);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	word-wrap: normal;
}

/* "Get it here, follow */
h2 {
	font-size: 36px;
	letter-spacing: -2px;
	font-weight: bold;
	padding-top: 10px;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.5),  1px -1px 0 rgba(255, 255, 255, 0.5),  -1px 1px 0 rgba(255, 255, 255, 0.5),  1px 1px 0 rgba(255, 255, 255, 0.5);
}

/* Deprecated */
.albumwrap {
/* background-color: rgba(0, 0, 0, 0.9);*/	
}



/* Social buttons size */
.socialbutton {
	width: 15%;
}

/* Buy links size */
.buylink {
	width: 45%;
	paadding: 5px;
}

/* Below here is the CSS for Mobile Under 700px, 
these values stack ON TOP of the above code,
so if you modify above, you will need to 
compensate to un-do it here.
 */


 @media (max-width: 700px) {
.fullbg {
	position: absolute;
	overflow: auto;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-image: url(resources/backgroundmobile.jpg);
	background-position: top;
}
.content1 {
	position: relative;
	float: none;
	width: 100%;
	padding: 0px;
	margin: 0px;
	height: auto;
	overflow: visible;
}
.content2 {
	position: relative;
	float: none;
	width: 60%;
	height: auto;
	padding: 0px;
	margin: 0px;
	background-color: transparent;
}
.content2pad {
	margin: 10px;
}
.content2a {
}
.socialbutton {
	width: 25%;
}
.buylink {
	width: 45%;
}
h2 {
	font-size: large;
}
}