@import url('https://fonts.googleapis.com/css?family=Barlow:400,700&display=swap');

*{
	font-family: inherit;
	color:inherit;
	font-size:inherit;
	box-sizing: border-box;
	line-height:inherit;
}

body{
	background-color: #eeeeee;
	color: #BC8000;
	background-size: 96px;

	line-height: 1.6;
	font-size:100%;
/*	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	height:100%;
	width: 100%;

	font-family: "Barlow", sans-serif;
}

html{
	height: 100%;
	width: 100%;
}

img{
	display: block;
	max-width: 100%;
	height: auto;
}

img.img_inline{
	vertical-align: middle;
	height:1.5em;
	margin-left: .35em;
	transition: .1s all linear;
}

img.img_inline:hover{
	height:1.6em;
}

.homeof{
	height:2em;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
}

h1{
	font-size:3em;
	text-transform: uppercase;
}

.hero::before{

	/*background-image: url('../img/--.png');*/
	background-position: center center;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	content: "";
	display: block;
	position: absolute;

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: -2;
}

.hero{
	width:100%;
	min-height: 100vh;
	position: relative;

	background-color: rgba(255, 178, 0, 0.7);
	background-color: #ffffee;

	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .logo{
	width:25em;
}

.hero h1{
	font-size: 3em;
}

.bar::after{
	content:"";
	display: block;
	background-color: #503600;
	z-index: 1;

	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1.5em;
}

.bar{
	width:100%;
	position: relative;


}

.content{
	max-width: 110em;
	margin: 0 auto;
	min-height: 10em;
	padding:2em;
}

.flex{
	display: flex;
	justify-content: center;
}

.flexchild{
	display: flex;
	align-items: center;
	justify-content: center;
}

.flexchild > .spacer{
	height: 1em;
}

.flexchild > img{

/*	border-right: 1px solid;
	border-color: #F2D28D;*/
}

.flexchild > table{
	padding-left:1em;
	margin-left: 1em;
}

.flexchild td{
	vertical-align: middle;
	padding:.25em;
	text-align: left;
}

td.center{
	text-align: center;
}

.flex-column{
	flex-direction: column;
}

.gameicon{
	width: 6em;
	margin:2em;
	height: auto;
}

@media (max-width: 800px){
	.mobile-flex-column{
		flex-direction: column !important;
	}

	.mobile-table{
		margin:0 auto !important;
		border-left: 0 !important;
	}

	.mobile-noborder{
		border:0 !important;
	}

	.homeof{
		margin-bottom: 1em;
	}
}