:root {
	--tb-primary: #2E9FFF;
	--tb-secondary: #FF2E9F;
	--tb-lightness: #F8F8F8;
	--tb-darkness: #323232;
	--tb-darkness-fg: #D8D8D8;
	--tb-debug: #00FF00;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;

	/* border:1px solid red; */
}

html, body {
	font-family: 'Montserrat', 'Calibri', sans-serif;
	background-color: #494949;
	color: #F8F8F8;
	height: 100%;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: var(--tb-secondary);
}

a:visited {
	text-decoration: none;
	color: var(--tb-secondary);
}

a:hover {
	text-decoration: none;
	color: var(--tb-lightness);
}


.body_wrapper {
	min-height: 100%;
	margin-bottom: -30px;
	padding-bottom: 0px;
	height: calc(100% - 85px);
}

.navbar {
	display: flex;
	align-items:center;
	background-color: var(--tb-lightness);
	color: var(--tb-darkness);
	width: 100%;
	height: 85px;

	/* box-shadow: 0px 3px 10px black; */
	box-shadow: 0px 3px 0px var(--tb-primary);
	z-index: 5;
	position: relative;
	padding: 0% 10%;

	top: 0;
	position: sticky;
}

.navlogo {
	background-image: url(./static/logo_dark.svg);
	background-repeat: no-repeat;
	width: 100rem;
	height: 4rem;
	margin: .5rem 0rem;
}

.navlink {
	color: var(--tb-primary);
	display:flex;
	justify-content:flex-end;
	font-size: 25px;
	font-family: 'Source Sans Pro', sans-serif;
	/* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
	text-decoration: none;
	margin: 0px 0px 0px 20px;
}

.navbar a { 
	/* color: #FF9F2E; */
	color: var(--tb-primary);
}
.navbar a:visited { 
	/* color: #FF9F2E; */
	color: var(--tb-primary);
}
.navbar a:hover { 
	/* color: #FF9F2E; */
	color: var(--tb-secondary);
}

.footer {
	display:flex;
	justify-content:center;
	align-items:center;

	background-color: var(--tb-lightness);
	color: var(--tb-darkness);
	width: 100%;
	height: 30px;
	font-size: .75rem;

	/* box-shadow: 0px 3px 10px black; */
	box-shadow: 0px -3px 0px var(--tb-primary);

	padding: 0% 0%;

	top: 0;
}

.main_body {
	background-color: var(--tb-darkness);
	width: min(80%, 1100px);
	min-height: calc(100% - 85px - 30px);
	margin: auto;
	display: flex;
	flex-direction: column;
}

.container_vertical {
	display: flex;
	flex-direction: column;
}

.container_horizontal {
	display: flex;
	flex-direction: row;
}

.content_row {
	color: var(--tb-debug);
	margin: 20px 0px 0px 0px;
	padding: 0.5rem 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.content_row:nth-child(even) {
	flex-direction: row-reverse;
}

.game_image {
	width: 450px;
}

.game_title {
	font-size: 2rem;
	padding: 0px min(50px, 5%) 0.8rem;
	/* margin-left: auto;
	margin-right: 0px; */
}

.game_description {
	color: var(--tb-darkness-fg);
	font-size: 1.35rem;
	padding: 0px min(50px, 5%);
}

.tb_logo {

}
