body {
	background-color: black;
	font-family: Arial, san-serif;
}

#container {
	display: flex;
	flex-direction: column;
	height: 600px; /* Example height */
}

#header {
	width: 100%;
	margin: 0 auto;
	border-bottom: 1px solid silver;
	color: white;
	text-align: center;
	margin-bottom: 10px;
}

#content {
	color: white;

}

#footer {
	width: 100%;
	margin: 0 auto;
	padding-top: 10px;
	border-top: 1px solid silver;
	margin-top: 10px;
	color: white;
	text-align: center;
 	margin-top: auto; /* Pushes the item to the bottom */
}

.float-container {
	padding-top: 10px;
	overflow: auto; /* Clears floats */
}
.float-box {
	float: left;
	width: 600px;
	text-align: left;
	margin-right: -150px;
}

.t {
}

