﻿* {
 list-style: none;
 text-decoration: none;
 font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
	margin: 0;
	background-color: #F9FAF3;
	background-repeat: repeat;
	background-image: url('../buttons_gifs/hintergrund_neu.gif');
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

#a1 {
	background-color:fuchsia;
	grid-column: 1 / 1;
	grid-row: 2 / 2;

}

#a2 {
	background-color:aqua;
	grid-column: 2 / 2;
	grid-row: 2 / 2;

}

/* Style paragraph in main part */
.inhalt {
	padding: 0em 1.6em;
	min-height: 35em;
	overflow: auto;
	float: left;
	text-align: center;
	grid-column: 1 / span 6;
	grid-row: 2 / 2;
}

.inhalt p {
	color: black;
	text-decoration: none;
	padding: 0em 2em;
	font-size: 0.8em;
	text-align: center;
}

/* Style heading1 in main part */
.inhalt h1 {
	color: black;
	text-decoration: none;
	font-size: 1.2em;
	text-align: left;
	padding: 0em 2em;
}

.inhalt h2 {
	color: black;
	text-decoration: none;
	padding: 0em 2em;
	font-size: 0.9em;
	text-align: center;
}

.inhalt h3 {
	color: black;
	text-decoration: none;
	font-size: 0.9em;
}

.inhalt h5 {
	color: black;
	text-decoration: none;
	padding: 0em 2em;
	font-size: 0.7em;
	text-align: center;
}

hr {
	border-width: 0.1em;
	border-style: solid;
	color: #A02000;
	padding: 0em 2em;
	font-size: 0.5em;
}

.inhalt h6 {
	color: black;
	text-decoration: none;
	font-size: 0.8em;
	font-style: italic;
	text-align: center;
	padding: 1em 0em 0em 0em;
}

/* Style links in main part */
.inhalt a {
	color: #A02000;
	text-decoration: none;
	font-size: 0.9em;
}

.inhalt img{
	padding: 0em 2em;
}

/* Change the color of links on hover in main part*/
.inhalt a:hover {
	color: grey;
}

.inhalt a:focus {
	color: grey;
}