main {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	font-family: Arial, Helvetica, sans-serif;
}

#content {
    padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
    max-width: 1600px;
	margin: 0 auto;
}
p.bold {
	font-weight: bold;
}
#title-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
#title-container #logo {
	width: 150px;
}
#title-container #title {
	color: green;
	font-family: Arial, Helvetica, sans-serif;
	padding: 20px;
}
@media screen and (max-width: 900px) {
	#title-container {
		flex-direction: column;
	}
	#title-container #title {
		padding: 20px 10px 0px 10px;
		text-align: center;
	}
  }




#title-container,
#content h2,
#content p,
#content .checksum-table,
#content #sample-file-section {
	margin-bottom: 20px;
}
.centered {
	text-align: center;
}
#content h2,
#content p {
	width: 100%;
}
.downloads {
	margin-top: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 20px;
}
#content h2 {
	color: green;
}

#sample-file-section {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#sample-file-section #sample-file-table,
#sample-file-section #sample-file-help {
	padding: 10px;
}

#sample-file-section #sample-file-table {
	border: 2px black solid;
	border-collapse: collapse;
}

#sample-file-section #sample-file-table th {
	text-align: left;
}

#sample-file-section #sample-file-table th,
#sample-file-section #sample-file-table td {
	padding: 2px;
	border: 1px black solid;
	border-collapse: collapse;
}

#sample-file-section #sample-file-table ul {
	padding-left: 20px;
}

#sample-file-section #sample-file-help {
	min-width: 375px;
	max-width: 675px;
	flex: 1;
}

#sample-file-section #sample-file-help ul {
	padding-left: 20px;
	margin-bottom: 10px;
}