/*******************************************************************************
	(c) hypercosmic podcast - hypercosmic.com
*******************************************************************************/

/*******************************************************************************
	Fonts
*******************************************************************************/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Open+Sans:300,400,700');

html, html a {
    -webkit-font-smoothing: antialiased;
/*    text-shadow: 1px 1px 1px rgba(0,0,0,0.004); */
}

html, body {
    width: 100%;
}

* { box-sizing: border-box; }

body {
	background-color: #242424;
	background: #242424 url('/images/bg-dark-forest.jpg') center center no-repeat;
	background-size: cover;
	font-family: "Courier New", "Courier", sans-serif;
	color: #ccc;
	margin: 0;
	padding: 0;
}

a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}


/*******************************************************************************
	Main structure
*******************************************************************************/

header,
main,
footer {
	padding: 18px 48px;
}

/*
header div,
main article,
footer div {
	max-width: 800px;
}
*/

header {
	background-color: #131313;
}

footer {
    margin-top: 40px;
	font-size: 0.9em;
	color: #333;
	color: rgba(255, 255, 255, 0.25);
	/*background-color: #131313;*/
}

header > div {
    padding: 16px 0;
}

.socials {
	display: inline-block;
	float: right;
	font-size: 1.5em;
}

.main-article-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	justify-content: normal;
}

.main-article-container article {
	margin: 1.53%;
	width: 30%;
    background: rgba( 0, 0, 0, 0.25 );
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-article-container article h3 {
	color: #fff;
	font-size: 1em;
	font-weight: normal;
	font-weight: bold;
	letter-spacing: -0.05em;
}

.main-article-container article p {
	font-size: 0.9em;
	line-height: 1.6em;
}

.main-article-container article .posttime {
	color: #bbb;
	color: #000;
	font-size: 0.8em;
	padding-top: 8px;
	border-bottom: 0.5px dotted #333;
	line-height: 1.6em;
}

@media all and (max-width: 1000px) {
	.main-article-container article {
		margin: 2%;
		width: 46%;
	}
}

@media all and (max-width: 750px) {
    body {
        color: #fff;
        font-size: 1.1em;
    }
    header, main, footer {
        padding: 18px 24px;
    }
    header strong {
        display: block;
    }
    footer * {
        text-align: center;
    }
	.main-article-container article {
		width: 100%;
		margin: 0 0 36px;
	}
    .main-article-container article h3 {
		font-weight: bold;
    }
}

.posttime span {
    background-color: #fff;
	background-color: rgba(255, 255, 255, 0.05);
	background-color: rgba(255, 255, 255, 1);
	display: inline-block;
	padding: 0 3px;
}

.tags {
    float: right;
    text-align: right;
    display: none;
}
.tags .tag {
	margin-left: 4px;
}

.tag-comic {
    background-color: rgb(85, 85, 150, 50%) !important;
    color: #fff;
}
.tag-news {
    background-color: rgb(255, 255, 255, 90%) !important;
    color: #000;
}

.tease {
    width: 100%;
    max-width: 600px;
}


::truth {
    display: none;
    position: relative;
    content: "Are you digging in here? Awesome.";
    z-index: -10000000;
}

@media screen and ( max-width: 620px ) {
    header * {
        text-align: center;
    }
    .socials {
        display: block;
    	float: none;
    	font-size: 1.5em;
    	text-align: center;
    	margin-top: 10px;
    }
}



/*******************************************************************************
	clearfix
*******************************************************************************/

.group:before,
.group:after {
    content: "";
    display: table;
} 
.group:after {
    clear: both;
}
.group {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}