*{
	background-color:;	
}


body{
	font-size:13px;
	font-family:arial;
	color:white;
	min-width:500px;
	max-width:100%;
	margin:0px auto;
	padding:;
	background-color:grey;
}

/*-----------header-----------------------------*/

header{
	/* border:1px solid red; */
	margin:;
	padding:20px;
	min-width:;
	/* background-color:#1C4174; */
	background-color:black;
	background: linear-gradient(180deg, black, white);
}


.headline{
	/* border:1px solid green; */
	display:inline-block;
	position:relativ;
	width:230px;
	margin:0px 10px; /* Abstand zwischen den Headlinekacheln  */

}



.headline img{
    display: block;
	border-radius: 20px;
	/* height:180px; */
	/* width:300px; */
	margin:5px;
	/* box-shadow:0px 8px 8px #666; */
	/* border: 1px solid #666; */
	margin: 10px auto;
	box-shadow:2px 2px 25px black;
}

.headline span {
	/* border:1px solid red; */
	position: relative;
	top: 0px;
	width:300px;
	padding:3px 20px;
    /* line-height: 2.5em; */
    text-align: center;
	font-size:20px;
	border-radius:20px;
	color: #fff;
	/* height: 2.5em; */
	border-top: 1px solid #ababab;
	background: #404040; /* Fallback IE 6-8 */
	background-color: rgba(40, 40, 40, 0.6);
}


.headline img:hover{
	box-shadow:2px 2px 2px black;
}

.kacheln img:hover{
	box-shadow:2px 2px 2px grey;
}

.linie{
	/* border: 1px solid black; */
	background-color:#D8E4F5;
	height:3px;
	width:;
	clear:both;
	margin:0px;
	padding:0px;
}
header, article{
	text-align:center;
}

/*----------Accordion--------------------------------*/

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #5c5c5c;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: center;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0px 18px;
  background-color: grey;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.accordion span {
	font-size: 20px; 
	text-shadow: 1px 2px 2px black; 
	text-shadow:2px 2px 2px black;
}









/*-----------Article-------------------------*/

h1,h2,h3{
	text-shadow:2px 2px 2px black;
}
h1{
		font-size:30px;
}
h2{
		font-size:25px;
}
h3{
		font-size:20px;
}
h4{
		font-size:16px;
		color:black;
		text-shadow:none;
}
h5{
		font-size:15px;
		color:black;
		text-shadow:none;
}
h6{
		font-size:14px;
		color:black;
		text-shadow:none;
}



article{
	border:1px solid black;
	/* background-color:#6989B7; */
	background-color:grey;
	/* min-height:500px; */
	/* line-height: 1.5; */
	/* font-weight:bold; */
	/* text-shadow:1px 1px 1px black; */
	margin-bottom:95px;
}

a{
	text-shadow:0px 0px 0px black;
	font-weight:bold;
}


.kacheln{
	display: grid; 
	grid-template-columns: 200px 200px 200px 200px;
	grid-template-rows:;
	gap: 10px;
	align-items: top;
	justify-content:center;
}

.kacheln img{
	border-radius: 20px;
	height:75px;
	width:150px;
	/* margin:5px; */
	margin: 0px auto;
	box-shadow:3px 3px 5px black;
	border: 1px solid black;
	border-radius: 10px;
	display: block;
	margin:5px;
	
}

.bildmitbildunterschrift{
	/* border:1px solid green; */
	display:inline-block;
	position:relativ;
	width:165px;
	margin:10px 14px;
}





.bildmitbildunterschrift span {
	/* border:1px solid green; */
	position: relative;
	top: 0px;
	width:400px;
	padding:1px 5px;
	/* margin-top:50px; */
    /* line-height: 2.5em; */
    text-align: center;
	font-size:15px;
	border-radius:20px;
	color: #fff;
	/* height: 2.5em; */
	border-top: 1px solid #ababab;
	background: #404040; /* Fallback IE 6-8 */
	background-color: rgba(40, 40, 40, 0.6);
	font-size: 15px;
}


/*-----------Footer-------------------------*/
footer{
	/* border:1px 0px 1px 1px solid black; */
	background-color:#1C4174;
	/* min-height:20px; */
	position:fixed;
	bottom:0px;
	width:100%;
}




.footer_icons{
		/* border:1px solid red; */
		text-align:center;
		margin:0px 0px 0px 0px;
		padding-top:20px;
}

.footer_adresse{
		text-align:center;
		font-size:20px;
		margin:0px 0px 0px 0px;
		padding:5px;
}

#button_top img{
	position:fixed;
	bottom:20px;
	/* margin:0px auto; */
	right:35px;
}





.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}






