body {
	background-color: #fafbf6;
	margin: 0;
	color: white;
	font-size: 20px;
	font-family: Tahoma, Geneva, sans-serif;
}
form, form div {
	display: inline;
}
form:not(:last-child) {
	margin-right: 10px;
}

#header {
	display: flex;
	flex-direction: row;
	position:relative;
}

#header a {
	flex: 1;
	text-align: center;
	background-color: #128AC9;
	color: whitesmoke;
	font-size: calc(8px + 0.5vw);
	height: 30px;
	text-decoration: none;
	border: 1px solid black;
	display: inline-block;
	padding: 10px 10px 10px 10px;
	transition: background-color 100ms ease-in-out, color 100ms ease-in-out;
}

#header a span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-repeat: no-repeat;
}

#header a:hover {
	background-color: #a5e0ff;
	border: 1px solid black;
	transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}

#header a .headerTooltip {
	display:none;
}

#header a img {
	max-height: 30px;
	max-width: 30px;
	min-width: 15px;
	min-height: 15px;
	width: 100%;
	height: 100%;
	padding: 10px;
	padding-left:0;
}

@media only screen and (max-width : 1000px) {
	#header a span {
		font-size: 0;
	}
	#header a {
		font-size: 18px;
	}

	#header a img {
		padding:0px;
		min-height: auto;
		min-width: auto;
	}
	
	#header a:hover {
		background-color: #a5e0ff;
		transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
	}
	
	#header a .headerTooltip {
	transform: scale(0);
	pointer-events: none;
	position:absolute;
	left:0;
	right:0;
	display: block;
	margin-top: calc(0.5em + 1px);
	background-color:#a5e0ff;
	vertical-align:bottom;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 1em;
	font-weight: 500;
	color: white;
	border-style: none solid solid solid;
	border-width: 1px;
	border-color: black;
	-webkit-animation-name: retractTooltip;
	-webkit-animation-duration: 0.1s;
	animation-name: retractTooltip;
	animation-duration: 0.1s;
	transform-origin: 0 0;
	}
	
	#header a .headerTooltip div {
		background-color:#128AC9;
		position:relative;
		display:inline-block;
		padding:4px 12px;
		margin-left:auto;
		margin-right:auto;
		border-radius: 16px;
	}

	#header a:hover .headerTooltip {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
		-webkit-animation-name: expandTooltip;
		-webkit-animation-duration: 0.1s;
		animation-name: expandTooltip;
		animation-duration: 0.1s;
		transform-origin: 0 0;
	}
}

#main {	
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("images/smbx/bg_0.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align:center;
	padding:60px;
}

#logo {	
	max-width:100%;
}

.buttonHolder {
	display: block;
	margin:auto;
	text-align:center;
	padding:20px;
}

.linkButton {
	cursor: pointer;
	background-color: #128AC9;
	min-width: 180px;
	border:none;
	border-radius: 5px;
	line-height: 50px;
	margin: 10px;
	color: white;
	text-align: center;
	font-size: 19px;
	font-weight: bold;
	transition: background-color 0.15s;
}
.linkButton:hover{
	background-color: #a5e0ff;
}

.divider {
	width:100%;
	height: 10px;
	background-color:black;
}

#about {	
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/smbx/bg_1.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	text-align:center;
	padding:60px;
}

#screenshotHolder table {
	width: 200px;
	display:inline-table;
}

#screenshotHolder td {
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	width: 200px;
	margin: 10px;
	border: none;
	display: inline-block
}
#screenshotHolder .screenshot {
	height: 200px;
	border-radius: 300px;
	border: 2px solid black;
	padding: 0;
}
#screenshotHolder td img {
	height: 100%;
	margin: 0;   
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	image-rendering: pixelated;
}
#screenshotHolder h1 {
	font-size: calc(0.5em + 0.5vw);
	margin: 0px 0px 1vw 0px;
}
#screenshotHolder p {
	font-size: calc(0.3em + 0.5vw);
	margin: 0px 0px 0.8vw 0px;
}

#changelogs{	
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("images/smbx/bg_2.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	text-align:center;
	padding:60px;
}

.linkButtonSmall {
	cursor: pointer;
	background-color: #128AC9;
	min-width: 80px;
	border:none;
	border-radius: 5px;
	line-height: 50px;
	color: white;
	text-align: center;
	margin: 10px;
	
	font-size: 12px;
	font-weight: bold;
	transition: background-color 0.15s;
}
.linkButtonSmall:hover{
	background-color: #a5e0ff;
}

.linkButtonSmallLight {
	cursor: pointer;
	background-color: #1abc9c;
	min-width: 80px;
	border:none;
	border-radius: 5px;
	line-height: 50px;
	color: white;
	text-align: center;
	margin: 10px;
	
	font-size: 12px;
	font-weight: bold;
	transition: background-color 0.15s;
}
.linkButtonSmallLight:hover{
	background-color: #19a98c;
}

.linkButtonSmallImportant {
	cursor: pointer;
	background-color: #e09665;
	min-width: 80px;
	border:none;
	border-radius: 5px;
	line-height: 50px;
	color: white;
	text-align: center;
	margin: 10px;
	
	font-size: 12px;
	font-weight: bold;
	transition: background-color 0.15s;
}
.linkButtonSmallImportant:hover{
	background-color: #f0a675;
}

#downloadsHeader {	
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/smbx/bg_1.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align:center;
	padding:60px;
}

.contentsection {	
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/background.png");
	background-size: tile;
	background-repeat: repeat;
	background-position: center;
	padding:2vw;
}

#currentDownload {
	background-color:#1abc9c33; 
	text-align: center;
	padding:2vw;
	border:4px solid #a5e0ff; 
	border-radius: 14px;
}

h1 {
	font-size: 28px;
	margin: 0px 0px 20px 0px;
	font-weight:bold;
}


.previousDownload {
	background-color:#128AC933; 
	text-align: center;
	padding:2vw;
	margin-top:50px;
	margin-bottom:50px;
	border: none;
	border-radius: 14px;
}


.previousOldDownload {
	background-color:#a5e0ff33; 
	text-align: center;
	padding:2vw;
	margin-top:50px;
	margin-bottom:50px;
	border: none;
	border-radius: 14px;
}


.changelogGroup {
	padding: calc(1.5vw + 8px);
	padding-right: calc(1.8vw + 8px);
	margin-top:50px;
	margin-bottom:50px;
	border: none;
	border-radius: 14px;
	word-wrap: break-word
}

.changelogGroup h3 {
	font-size: calc(1em + 0.5vw);
}
.changelogGroup h4 {
	font-size: calc(0.75em + 0.3vw);
}
.changelogGroup li {
	font-size: calc(0.6em + 0.4vw);
}

.changelogGroup ul{
	padding-left: calc(4px + 1vw);
}

.changelogGroup ul ul{
	padding-left: calc(4px + 1vw);
}

.changelogGroup table {
	display:inline-table;
	background-color: #128AC933;
	margin: 8px;
	max-width: 25vw;
}

.roadmapSection {
	background-color:#77777793;
	margin:0px;
	border:2px solid #777777f2;
	padding:15px 0px 0px 25px;
	text-align: left;
}
.roadmapElement {
	background-color:#eeeeee93;
	border:2px solid #777777f2;
	margin-left: -25px;
	margin-top: -15px;
	font-size: larger;
	padding: 2px 0px 0px 15px;
	text-align: left;
}

table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
  }
  
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}