/* Stylesheet für die Homepage  */
body {
  background-color: #2E2E2E; /* Hintergrundfarbe */
  color: white; /* Schriftfarbe */
    font-family: Georgia,Times, serif;
}


div#wrapper {
  background-color: black;
  color: white;
}
text { font-size: 140%;  font-family: Georgia,Times, serif; color:whitesmoke; line-height: 130%; }
h1 { font-size: 150%;  font-family: Verdana, Arial, Helvetica, sans-serif;color: antiquewhite}
h2 { font-size: 140%;  font-family: Verdana, Arial, Helvetica, sans-serif;color:antiquewhite}
plink {font-size: 140%;  font-family: Georgia,Times, serif;color:antiquewhite}
a:link { color: antiquewhite; }
a:visited { color: antiquewhite; }

#box {
border: 5px solid lightgrey;
border-radius: 15px 15px 15px 15px;
    padding: 25px;
    
     width: auto;
  margin: 2%;
}

.bildlinks {
  float:left;
/*  padding: 3px;
  border: 5px solid #ccc;*/
  margin-right: 20px;
  margin-bottom: 10px;
}
.bildrechts {
  float:right;
  /*padding: 3px;
  border: 5px solid #ccc;*/
  margin-bottom: 10px;
  margin-left: 20px;
}

	
/*Tooltip*/
main {
	background: transparent;
	border-color: transparent;
}

.tooltip {
	position: relative;
	color: antiquewhite;
	text-decoration: underline;
}

.tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 130%;
	left: 20%;
	background: white;
	padding: 0.2em 0.4em;
	color: black;
	border-radius: 0.3em;
	opacity: 0;
	transition: all 0.3s;
	min-width: 10em;
	max-width: 15em;
}

.tooltip::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 1em solid #3983ab;
	border-left: 1em solid transparent;
	border-right: 1em solid transparent;
	transition: all 0.3s;
	opacity: 0;
	left: 30%;
	bottom: 90%;
}

.tooltip:hover::after,
.tooltip:focus::after {
	opacity: 1;
	bottom: 100%;
}

.tooltip:hover::before,
.tooltip:focus::after {
	opacity: 1;
	bottom: 70%;
}
