@charset "utf-8";
/* CSS Document */
/*<style type="text/css"> */
/*<meta name="viewport" content="width=device-width, initial-scale=1.0">*/


h1 {color: rgba(0,0,0,1);
	font-size: 30px;}

h2 {color: rgba(0,0,0,1);
	text-align: center;
	font-size: 18px;

}

h0{color: rgba(0,0,0,1);
	font-size: 10vw;}

html
	{
		overflow:scroll;
	}

body{
	background-color: rgba(0,0,0,0.1);
	
}

.Uberschrift
{
	position:absolute;
	background-color: rgba(0,0,0,0.2);
	/*z-index: 0;*/
	margin: auto;
	width: 90%;
	border-radius: 50px;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"
	
}

.Haupteil
{
	position:absolute;
	background-color: rgba(0,0,0,0.1);
	/*z-index: 0;*/
	margin-top: 100px;
	width: 90%;
	height: auto;
	border: 3px solid rgba(0,0,0,0.5);
	border-radius: 50px;
	text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}


.Mainpicture
{
	padding: 10px;
	width: 75%;
	max-width: 500px;
	height: auto;
}

.PagePicture
{
	padding: 10px;
	height: 10%;
	max-width: 80%;
	max-height: 100px;
	height: auto;
}



.dropbtn {
  background-color: #7C7C7C;
	border-radius: 15px;
  color: white;
  padding: 16px;
  font-size: 16px;
	margin: 15px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 380px;
  box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 1px 1px;
  text-decoration: none;
  display: block;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #C2C2C2}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display:block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #585858;
}

/* Boxdarstellung dynamisch für Abgelegte Inhalte!
/* Create three equal columns that floats next to each other */
.column {
	float:left;
	position: relative;
	width: 250px;
	padding: 0;
	margin: 1%;
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 30px;
  }
  
  /* Clear floats after the columns */
  .row::after {
	content: "";
	display: table;
	clear: both;
  }


  .columnSingle {
	float:left;
	position:sticky;
	width: 96%;
	padding: auto;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 0%;
	margin-bottom: 1%;

	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 30px;
  }
  
  /* Clear floats after the columns */
  .rowSingle::after {
	content: "";
	display: table;
	clear: both;
  }
  


  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width:650px) {
	.column {
	  width: 100%;
	}
  }