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

body{
	background-image: url(../images/OS-bg.png), url(../images/concrete_seamless_teal.png);
	background-color: rgba(6, 29, 18,1);
	background-repeat: no-repeat; repeat;
	background-size: 100%, auto;
	font-family: 'Roboto', sans-serif;
	color: #efe0cd;
	font-size: 14px;
	margin: 0;
}

a{
	color: #32ef98;
	text-decoration: none;
	transition: color 0.2s linear 0s;
	-webkit-transition: color 0.2s linear 0s; /* Safari 3.1 to 6.0 */
	-moz-transition: color 0.2s linear 0s;
	-o-transition: color 0.2s linear 0s;
	outline: 0;
}

a:hover{
	color: #f5b352;
}

p,ul{
	line-height: 2;
}

h1{
	text-transform: uppercase;
	color: #6ec12b;
	font-size: 36px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}

h2{
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}

/* Header */

#header-area, #content-area, #footer-area{
	width: 960px;
	margin: 0 auto;
}

#header-wrapper{
	overflow: auto;
	margin-bottom: 5;
}

.header-logo{
	margin: 25px 0;
	overflow: auto;
	float: left;
	margin-left: 15px;
}

img.weg-logo{
	margin-right: 10px;
	float: left;
}

.header-logo span{
	float: left;
	margin-top: 25px;
}

.header-social{
	float: right;
	gap: 10px;
	overflow: auto;
	color: #fff;
	font-size: 18px;
	margin: 25px 0 0;
	width: 300px;
	height: 50px;
}

.header-social img{
	opacity: 0.6;
	transition: opacity 0.2s linear 0s;
	-webkit-transition: opacity 0.2s linear 0s; /* Safari 3.1 to 6.0 */
	-moz-transition: opacity 0.2s linear 0s;
	-o-transition: opacity 0.2s linear 0s;
}

.header-social img:hover{
	opacity: 1;
}

.facebook{
	background: #3b5998;
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	-moz-border-radius: 20px; /* Firefox */
	-webkit-border-radius: 20px; /* Safari & Chrome */
	margin-right: 20px;
}

.twitter{
	background: #55acee;
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-right: 20px;
	-moz-border-radius: 20px; /* Firefox */
	-webkit-border-radius: 20px; /* Safari & Chrome */

}





.discord{
	background: #55acee;
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-right: 20px;
	-moz-border-radius: 20px; /* Firefox */
	-webkit-border-radius: 20px; /* Safari & Chrome */

}

.mastodon{
	background: #55acee;
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-right: 20px;
	-moz-border-radius: 20px; /* Firefox */
	-webkit-border-radius: 20px; /* Safari & Chrome */

}

/* Content */

#oldskies-logo{
	text-align: center;
}

#site-nav{
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	margin: 20px auto;
	background: #114f32;
	border: 2px solid #29a16a;
	width: 780px;
	text-align: center;
	border-radius: 20px;
	-moz-border-radius: 20px; /* Firefox */
	-webkit-border-radius: 20px; /* Safari & Chrome */
	color: #d300ff !important;
	
}

ul.site-nav{
	padding: 0;
	margin: 4px auto;
	list-style: none;
}

ul.site-nav li{
	display: inline-block;
}

#site-nav a{
	margin: 0 20px;
	color: #32ef98 !important;
}

#site-nav a:hover{

	color: #dfff09 !important;

}
.body-content{
	width: 620px;
	margin: 50px auto;
}

.body-section{
	margin: 30px auto 0;
	padding-bottom: 40px;
	border-bottom: 2px solid #423627;
	width: 620px;
}

.body-section h1{
	text-align: center;
	color: #32ef98;
}

.body-section h2{
	
	color: #FFFFFF;
}

.body-section .humble-widget{
	width: 100%;
	margin: 30px auto;
}

.humble-widget iframe{
	height: 328px;
	width: 100%;
}

p.preorder-notice{
	font-size: 18px;
	font-weight: 900;
}

.body-text{
	margin: 30px auto;
}

.embed-container{ 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
} 

.embed-container iframe, .embed-container object, .embed-container embed{ 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

.about-gallery{
	overflow: auto;
}

.about-gallery img{
	width: 280px;
	margin: 10px;
	float: left;
	opacity: 0.6;
	transition: opacity 0.1s linear 0s;
	-webkit-transition: opacity 0.1s linear 0s; /* Safari 3.1 to 6.0 */
	-moz-transition: opacity 0.1s linear 0s;
	-o-transition: opacity 0.1s linear 0s;
}

.about-gallery img:hover{
	opacity: 1;
}

p.question{
	font-weight: 900;
	color: #6ec12b;
}

/* Footer */

#footer-wrapper{
	text-align: center;
	margin: 30px auto 50px;
}

.footer-disclaimer, .footer-credit{
	margin: 10px auto;
}

.footer-disclaimer span, .footer-credit span{
	font-size: 12px;
	color: #938b81;
}

/* Media Queries */

@media only screen and (max-width:960px){

	#header-area, #content-area, #footer-area{
		margin: 0 1%;
		width: 98%;
	}
	
	#oldskies-logo img{
		max-width: 960px;
		width: 100%;
	}
	
	.header-social{
		margin-right: 5px;
	}
}

@media only screen and (max-width:650px){
	#site-nav{
		width: auto;
	}
	
	.body-content, .body-section{
		width: 95%;
	}
	
	.about-gallery{
		text-align: center;
	}
	
	.about-gallery img{
		float: none;
		width: 80%;
		opacity: 0.8;
		margin: 20px auto;
	}
}

@media only screen and (max-width:600px){
	ul.site-nav li a{
		font-size: 15px;
	}
}

@media only screen and (max-width:550px){
	ul.site-nav li{
		width: 40%;
	}
}

@media only screen and (max-width:490px){
	.humble-widget iframe{
		height: 205px;
	}
	
	h1{
		font-size: 30px;
	}
}

@media only screen and (max-width:450px){
	ul.site-nav li{
		width: 100%;
	}
	
	.header-social{
		display: none;
	}
	
	.header-logo{
		float: none;
		margin: 25px auto;
		text-align: center;
	}
	
	img.weg-logo{
		float:none;
	}
	
	.header-logo span{
		float: none;
	}
}

@media only screen and (max-width:400px){
	.about-gallery img{
		width: 100%;
	}
	
	.footer-disclaimer span, .footer-credit span{
		font-size: 11px;
	}
}
