body, html {
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

@font-face {
	font-family: 'Oxygen';
	font-style: normal;
	font-weight: 300;
	src: url('./fonts/Oxygen-Light.ttf') format('truetype'); /* Safari, Android, iOS */
}

body {
	margin: 0;
	font-family: 'Oxygen', sans-serif;
	background-color: #222;
	color: #777;
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0) 300px);
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0) 300px);
	background-repeat: no-repeat;
}

div {
	box-sizing: border-box;
}

a:link, a:visited
{
	color:#7feeff;
	text-decoration: none;
	-webkit-transition: color 0.15s linear;
	-moz-transition: color 0.15s linear;
}
a:hover
{

	color:#fff;
	text-decoration: underline;
}

::selection {
	background-color: rgba(0,0,0,0.5);
	color: #fff;
}

#main {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}
#footer {
	text-align: center;
	margin: 40px;
}
#headBitbof {
	text-align: center;
	color: #fff;
	font-size: 25px;
	margin-top: 10px;
	text-decoration: none;
	display: block;
}
#headBitbof:hover {
	text-decoration: underline;
}
#headTitle {
	text-align: center;
	color: #aaa;
	font-size: 30px;
	margin-bottom: 20px;
}
.entry
{
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
	-webkit-transition: background-color 0.2s linear;
	-moz-transition: background-color 0.2s linear;
	background-color: rgba(255,255,255,0);
	box-shadow: 0 -1px 0px rgba(255,255,255,0.1);
}
.entry:hover
{
	background-color: rgba(128,128,128,0.1);
	background-color: rgba(128,128,128,0.1);
}
.entryIm {
	flex: 0 0 200px;
}
.entryIm img {
	width: 100%;
}

.entryContent {
	padding-right: 20px;
}
.entry h1 {
	padding: 0;
	margin: 0;
	color: #aaa;
	margin-bottom: 10px;
}

.flex-center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-glyph-bitbof {
	width: 1.2em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(/bb-assets/glyph-bitbof.svg);
}

/* --- mobile --- */
@media(max-width: 499.9px) {
	.entryIm {
		flex: 0 0 100px;
	}
	.entry h1 {
		font-size: 19px;
	}
}