*{
	font-family: 'Arial', sans-serif;
	flex-wrap: wrap;
	outline: none;
	/*border: 1px solid red; /*border for flexbox testing*/
}

html, body{
	display: flex;
	height: 100%;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
	scroll-behavior: smooth;
	justify-content: center;
	align-items: center;
}

main{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 1em;
	max-width: 50em;
}

header{
	width: 100%;
	display: flex;
}

content{
	width: 100%;
	display: flex;
	text-align: justify;
	flex-direction: column;
	line-height: 1.35em;
}

footer{
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-top: 0.67em;
  	margin-bottom: 0.67em;
}

.articles{
    	border-bottom: 1px solid #000;
}

a{
	color: #000; /* Linkfarbe */
	text-decoration: underline; /* Text wird beim Hover unterstrichen */
}

a:hover{
	color: #666; /* Farbe wechselt beim Hover auf rot */
	text-decoration: underline; /* Text wird beim Hover unterstrichen */
}

::selection{
	background-color: black;
	color: white;
}
