/* Style Sheet index.html Gelnhäuser Nachrichte*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--artikelTitelFarbe: #004d81;
	--artikelTextFarbe: #004d81;
}

html {
	background-color: #f5f5f5;
	font-size: 1.375rem;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	min-height: 100vh;
	max-width: 1100px;
	background-color: #f5f5f5;
	margin: 0 auto;
}

img {
	width: 100%;
	height: 100%;
	text-align: center;
}

@media screen and (max-width: 800px) {
	img {
		width: 80%;
		height: 80%;
		text-align: center;
		margin-left: 30px;
	}
}

.gnn-untertitel {
	font-family: Times;
	font-size: 26px;
	font-weight: normal;
	color: #004d81;
	text-align: center;
	border-bottom: 2px solid #004d81;
	padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
	.gnn-untertitel {
		font-size: 18px;
	}
}

nav {
	width: 100%;
	height: 50px;
	background-color: #f2f2f2;
	border-bottom: 2px solid #004d81;
	padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
	.nav {
		font-size: 14px;
	}
}

nav ul li {
	list-style: none;
	display: inline-block;
	float: right;
	line-height: 50px;
}

nav ul li a {
	text-decoration: none;
	font-size: 20px;
	color: #004d81;
	padding-top: 0;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
}

@media screen and (max-width: 800px) {
	nav {
		font-size: 14px;
	}
}

ul li a:hover {
	font-weight: 700;
}

.knopfLink {
	display: inline-block;
	background-color: lightgrey;
	color: #004d81;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid grey;
	margin-top: 20px;
	margin-left: 20px;
	padding: 5px;
	height: 60px;
	width: 240px;
	text-align: center;
	vertical-align: middle;
}

.knopfLink:hover {
	background-color: lightblue;
	color: darkred;
}

.artikel {
	display: flex;
	flex-direction: column;
	align-content: start;
	justify-content: center;
	margin-left: 40px;
	width: 80%;
}

.artikelTitel {
	color: var(--artikelTitelFarbe);
	font-family: Times;
	font-size: 1.5rem;
	font-weight: 700;
	height: auto;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
	.artikelTitel {
		width: 80%;
		margin-left: 5px;
		margin-left: 5px;
	}
}

.artikelText {
	color: var(--artikelTextFarbe);
	font-family: Times;
	font-size: 1.25rem;
	font-weight: normal;
	text-align: left;
	padding-bottom: 10px;
	width: 100%;
}

@media screen and (max-width: 800px) {
	.artikelText {
		width: 80%;
		margin-left: 5px;
		margin-left: 5px;
	}
}

.link-flex-container {
	align-items: center;
	align-content: center;
	background-color: #f2f2f2;
	display: flex;
	flex-direction: row;
	font-size: 1rem;
	margin: 0 auto;
	height: 60px;
	justify-content: center;
	width: 60%;
}

@media screen and (max-width: 768px) {
.link-flex-container {
	align-items: center;
	align-content: center;
	display: flex;
	flex-direction: column;
	font-size: .75rem;
	height: 100px;
	line-height: 1.375rem;
	margin-top: 10px;
	width: 60%;
	}
}
	 
.link-flex-eintrag	{
	color: black;
	font-weight: 600;
	padding-left: 30px;
	text-decoration-line: none;
	
}

.link-flex-eintrag:hover	{
	color: darkblue;
	font-size: 1.25rem;
	font-weight: 800;
}

.footer {
	border-top: 1px solid #004d81;
	color: #004d81;
	padding-left: 10px;
	padding-top: 10px;
}
