
:root {
	--primary-color: #008B8B;
	--secondary-color: #FF6347;
}

* {
	font-family: Arial;
	box-sizing: border-box;
}

h2 {
	color: white;
	font-size: 40px;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
}

h3 {
	color: white;
	font-size: 24px;
	font-style: normal;
	font-weight: normal;
	text-decoration: underline;
	text-align: left;
}

h4 {
	color: white;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	text-decoration: underline;
	text-align: left;
}

#main-container {
	position: absolute;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	background-color: black;
}

#main-container header {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 60px;
	background-image: linear-gradient(#008B8B, #111111); /* Fallback for older browsers */
	background-image: linear-gradient(var(--primary-color), #111111);
}

#main-container header a {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 100%;
	color: white;
	font-size: 30px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	outline: none;
}

#main-container header a img {
	width: 40px;
	height: 40px;
}

#main-container header a.center {
	left: 50%;
	transform: translate(-50%, 0);
}

#main-container header a.right {
	right: 0px;
	margin-right: 40px;
}

#main-container main {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: calc(100% - 110px);
	margin: 0px;
	padding: 0px;
}

#main-container main #article-container {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

#main-container main article {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 10px;
	overflow-y: auto;
}

#main-container main article img {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	height: auto;
	margin: 10px;
}

#main-container main article p {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: auto;
	height: auto;
	margin: 10px 10px 20px 10px;
	font-size: 16px;
	font-style: normal;
	text-decoration: none;
	text-align: left;
	color: white;
}

#main-container main article p.center {
	text-align: center;
}

#main-container main article li {
	font-size: 16px;
	font-style: normal;
	text-decoration: none;
	text-align: left;
	color: white;
	clear: both;
}

#main-container main article a, #main-container main article a:hover, #main-container main article a:visited {
	color: white;
}

#main-container footer {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 50px;
	margin: 0px;
	padding: 0px;
	background-color: black;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: var(--primary-color);
}

#main-container footer a {
	color: white;
	font-size: 16px;
	font-style: normal;
	text-decoration: none;
	margin: 5px 10px;
	outline: none;
}

#main-container footer a:hover {
	cursor: pointer;
	text-shadow: 0px 0px 4px white;
}

@media only screen and (max-width: 700px) {
	#main-container footer {
		flex-direction: column;
		height: 150px;
	}
	#main-container main {
		height: calc(100% - 210px);
	}
}