.main-page {
	background-color: black;
	/*background-image: url(../images/background.png);
	background-size: 35em;
	background-attachment: fixed;*/
	color: white;
	font-family: "Assistant", Sans-serif;
	margin: -1px;
}

#page-content {
	background-image: url(../images/background.png);
	background-size: 35em;
	background-attachment: scroll;
	background-repeat: repeat;
}

header {
	display: flex;
	align-items: center;
	background-color: black;
}

.header-img-wrapper {
	width: 20vw;
	min-width: 120px;
	max-width: 300px;
}

.header-img {
	max-width: 100%;
	height: auto;
}

h1 {
	font-size: 35px;
	font-weight: bold;
}

hr.solid {
	border-top: 2px solid white;
	width: 100%;
}

p {
	font-size: 18px;
	text-align: justify;
	margin-bottom: 3px;
	line-height: 1.6;
}

li {
	font-size: 18px;
	line-height: 1.6;
}

a {
	color: white;
}

.site-title-box {
	margin-left: 7vw;
}

.site-title {
	text-align: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	font-size: min(35px, 7vw);
	font-weight: bold;
}

.page-content-wrapper {
	margin-left: 4vw;
	margin-right: 4vw;
	margin-bottom: 40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.page-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
}

.short-section {
	max-width: 780px;
}

.wide-section {
	max-width: 1100px;
}

.page-title {
	text-align: center;
	margin-bottom: 20px;
}

footer {
	font-size: 18px;
	text-align: center;
	margin-bottom: 40px;
}

@media (max-width: 1200px) {
	.wide-section {
		max-width: 780px;
	}
}

@media (max-width: 900px) {
	.short-section {
		max-width: 480px;
	}

	.wide-section {
		max-width: 700px;
	}
}

@media (max-width: 800px) {
	.wide-section {
		max-width: 480px;
	}
}

@media (max-width: 570px) {
	.short-section {
		width: 94%;
		max-width: 380px;
	}

	.wide-section {
		width: 94%;
		max-width: 380px;
	}

	h1 {
		font-size: 21px;	
	}
	
	p {
		font-size: 16px;
	}

	li {
		font-size: 16px;
	}
}

