html {
    height: 100%;
    margin: 0px;
    align-content: center;
}

body {
    font-family: Arial, sans-serif;
	color: #C2C2C2;
	font-size: .9em;


	padding: .5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;
    margin: 0;
	

    background-image: url("images/webs/hintergrund.jpg");
	background-color: #1D2420 ; 
	background-repeat: no-repeat;
	background-position: 100% top;
    width: 100%;
    height: 100%;
    background-size: cover;
	background-attachment:fixed;

	
}

	p {
	margin: 0 0 2em 0;
	font-weight: 300;
	font-size: .9em;
	}
	
	


/* unvisited link */
a:link {
  color: #C2C2C2;
  	text-decoration: none;
	font-size: .9em;
}

/* visited link */
a:visited {
  color: #C2C2C2;
}

/* mouse over link */
a:hover {
  color: #D2B48F;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: #C2C2C2;
}


	
	
.container {
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 10px; 
}

.logo {
    position: relative;
    width: 620px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    height: 300px;
}

.logo img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}


.language-template {
    z-index: 10;
}

.char-template {
    z-index: 5;
}

.content {
    width: 100%;
    text-align: center;
    margin-top: 59px;

}

.content img {
    
}

.subtitle {
    color: #777;
    margin: 0;
    padding: 10px 0 20px 0;
    letter-spacing: normal;
    display: inline-block;
    white-space: nowrap;
}

.search-box input {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
	background-color: #262626;
	color: #C2C2C2;

	
}

.results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
    margin-top: 20px;
    line-height: 1.2;
	
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;

	
}

.label {
    width: 150px;

    text-align: left;

}

.value {
    flex: 1;
    text-align: left;
    white-space: pre-wrap;



	
}

.item {
    padding: 15px;
}

.results .item:last-child {
    grid-column: span 2;
	
}

.mb-20 {
    margin-bottom: 40px;
	
}

.char-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
	

}

.chars,
.nums {
    display: flex;
    justify-content: center;
    width: auto;
	
}

.char-item {
    text-align: center;
    margin: 0 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	color: #C2C2C2
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #777;
    margin: 5px 0;
	
}

.char {
    font-size: 1.2em;
	color: #C2C2C2;
	
	

}

.number {
    font-size: 1em;
    color: #C2C2C2;


}

@media (max-width: 600px) {
    .logo {
    position: relative;
    width: 280px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    height: 150px;
    }
	

.content img {
    width: 80%;

    }



    .results {
        font-size: 0.9em;
        display: flex;
        flex-direction: column;
        gap: 6px;
        line-height: 1;

    }

    .item {
        width: 100%;
        padding: 5px;
    }

    .column-stack {
        flex-direction: column;
        align-items: flex-start;
    }

    .value {
        width: auto;
        margin-bottom: 0px;
    }

    .label {
        margin-bottom: 0px;
    }

    .search-box input {
        font-size: 0.9em;
    }

    .char {
        font-size: 1em;
    }

    .number {
        font-size: 0.8em;
    }
}
















/* Footer */

	#footer {
		padding: 1em 0 2em 0;
		background: #1c1c1c;
		text-align: center;
		
		
		position: fixed;
	
  padding: .6em;
  bottom: 0;
  left: 0;
  right: 0;

	}

		#footer a {
			color: rgba(255, 255, 255, 0.75);
		}

			#footer a:hover {
				color: #fff;
			}

		#footer .copyright {
			color: rgba(255, 255, 255, 0.5);
			font-size: 0.9em;
			margin: 0 0 2em 0;
			padding: 0;
		}

		@media screen and (max-width: 736px) {

			#footer {
				padding: 3em 0 1em 0;
			}

		}






/* dropdown */



.dropdown {
  position: relative;
  display: inline-block;
  font-size: .9em;
}

.dropdown-content {
  display: none;
  position: absolute;
  text-align: left;
  background-color: black;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
  padding: 12px 16px;
  z-index: 1;
  
}

.dropdown:hover .dropdown-content {
  display: block;
}




/* datum */


d { 
  position: fixed; 
  bottom: .9em; 
  left: 1.2em;
  font-size: .9em;
  color: #C2C2C2;
  
}

e { 
  position: fixed; 
  bottom: .9em; 
  right: 1.2em;
  font-size: .9em;
  color: #C2C2C2;
  
}


/* Menue */



header {
    background-color: black;
    position: fixed;
	z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    display: flex;
    align-items: center;
	text-align: left;
    box-shadow: 0 0 0px 0 black;
	
}



header * {
    display: inline;
	
}

header li {
    margin: 20px;
	
}

header li a {
    color: black;
    text-decoration: none;
}



/* ACORDION */






/*   @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');    */

/* Sets the background color of the body to blue. Sets font to Rubik */

body {
  background-color: #;
  font-family: 'rubik', sans-serif;
}

/* Aligns the heading text to the center. */

h1 {
  text-align: left;
}

/* Sets the width for the accordion. Sets the margin to 90px on the top and bottom and auto to the left and right */

.accordion {
  width: #;
  margin: 50px auto;
  color: #;
  background-color: transparent;
  padding: 0px 0px;
}



.accordion .container {
  position: relative;
  margin: 10px 10px;
  width: 100%;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
  position: relative;
  padding: 0px 0;
  font-size: #;
  width: 140px;
  color: #;
  cursor: pointer;
}




/* Positions the plus sign 5px from the right. Centers it using the transform property. */

.accordion .label::before {
  content: '+';
  color: #;
  top: 50%;
  position: absolute;
  right: -5px;
  font-size: #;
  transform: translateY(-50%);
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
  position: relative;
  background: transparent;
  height: 0;
  font-size: #;
  text-align: justify;
  width: #;
  overflow: hidden;
  transition: 0.5s;
}

/* Adds a horizontal line between the contents */

.accordion hr {
  width: 5;
  margin-left: 0;
  border: 1px solid grey;
}

/* Unhides the content part when active. Sets the height */


.accordion .container.active .content {
  height: 180px;
}

/* Changes from plus sign to negative sign once active */

.accordion .container.active .label::before {
  content: '-';
  font-size: #;
}


/* Acordion textinhalt dynamische höhe */
.et_pb_toggle {
	padding: 0;
}
.et_pb_toggle .et_pb_toggle_title {
	padding: 20px;
}
.et_pb_toggle .et_pb_toggle_title:before {
	padding-right: 20px;
}
.et_pb_toggle .et_pb_toggle_content {
	padding: 0 20px 20px 20px;
}



/* CSS aktalisierung nach zeit */
style.css?v=1625366400


