body {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 12px;
	color: #D2D2D2;
	background-color:#404040;
	margin-top: 70px;
}
.darker {
	color: #707070;
}
a {
	color: #D2D2D2;
	text-decoration: none;
}
a:hover {
	color: #187FC2;
	text-decoration: none;
}
div#main {
	background-color: #2A2A2A;
	margin-left: auto;
	margin-right: auto;
	border-radius: 35px;
	max-width: 1400px;
}
div#mainlogo {
	position: relative; /* To create a positioned ancestor for the languge. */
	padding-top: 30px;
	text-align: center;
}
img.lang {
	position: absolute;
	right: 50px;
}
h1 {
	text-align: center;
	font-size: 32px;
}
div#content {
	width: 84%;
	margin-left: auto;
	margin-right: auto;
}
div#subheader {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	border-bottom: thin solid #505050;
	padding-bottom: 30px;
}
div#flexcontent {
	display: flex;
	flex-direction: row;
	padding-top: 15px;
	padding-bottom: 30px;
}
div#leftcolumn {
	flex: 1; /* Shorthand for flex-grow, flex-shrink, flex-basis. We need flex-basis to be 0, default is auto. */
	border-right: thin solid #505050;
	padding-right: 40px;
}
div#rightcolumn {
	flex: 1;
	padding-left: 40px;
}
div#leftcolumnheader {
	border-bottom: 4px double #505050;
	padding: 10px 0 25px 0;
}
div#rightcolumnheader {
	border-bottom: 4px double #505050;
	padding: 10px 0 25px 0;
}
div.columnheader {
	border-bottom: 4px double #505050;
	padding: 25px 0 25px 0;
}
div.mainlink {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: thin solid #505050;
	transition: background-color 0.6s;
}
div.mainlink:hover {
	background-color: #252525;
}
div.mainlink div {
	margin-left: 5px;
	margin-right: 5px;
}
div.mainlink div:nth-child(2) {
	flex: 1;
}
div.launch {
	background-image: url(../images/main-link.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 80px;
	height: 80px;
	transition: background-image 0.5s; /* Not animatable but works in Chrome. */
}
div.launch:hover {
	background-image: url(../images/main-link-a.png);
}
@media (max-width: 1000px) {
	div#flexcontent {
		flex-direction: column;
	}
	div#leftcolumn {
		flex: 1;
		border-right: none;
		padding-right: 0;
	}
	div#rightcolumn {
		flex: 1;
		padding-left: 0;
	}
	div#rightcolumnheader {
		border-bottom: 4px double #505050;
		padding: 25px 0 25px 0;
	}
}
div#footer {
	text-align: center;
	margin: 30px;
}