  
#text {
  background-color: black;
  color: lime;
  font-family: monospace;
  font-size: 1em;
  line-height: 1.5;
  overflow:hidden;
}
#container{
  height: 100%;
  box-sizing: border-box;
  background-color: black;
  color: lime;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px;
  overflow:hidden;
  border: 2px solid #00FF00;
  z-index: 2;
}
#container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  font-size: 50px;
}

.blinking {
  animation: cursor-blink 0.5s infinite;
}

@keyframes cursor-blink {
  0% { opacity: 0; }
}

#hintergrund {
  top:0vh;
  left:0vw;
  width: 100vw; /* 100% der Fensterbreite */
  height: 100vh; /* 100% der Fensterhöhe */
  position: fixed; /* Fixieren Sie die Position des divs */
  transition: background-color 2s; /* 2 Sekunden */
  
}

#knopf{
  width: 10em;
	height: 1.5em;
   
}

.black {
  background-color: black;
}
.aus {
  display: none;  
}
.an {
  display:block; 
}



button {
	font: 1em -apple-system, BlinkMacSystemFont,"Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
button {
	background-color: #eee;
	border: 0;
	border-radius: 0.125em;
	box-shadow:
		-0.2em -0.125em 0.125em rgba(0, 0, 0, 0.25), 
		0 0 0 0.04em rgba(0, 0, 0, 0.3), 
		0.02em 0.02em 0.02em rgba(0, 0, 0, 0.4) inset, 
		-0.05em -0.05em 0.02em rgba(255, 255, 255, 0.8) inset;
	color: #777;
	font-size: 2em;
	outline: 0;
	position: relative;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
button:not(:last-of-type) {
	margin-right: 0.35em;
}
button:active {
	box-shadow:
		0.1em 0.1em 0.1em rgba(0, 0, 0, 0.2),
		0 0 0 0.05em rgba(0, 0, 0, 0.4), 
		-0.025em -0.05em 0.025em rgba(255, 255, 255, 0.8)     inset;
  
}

button span {
	display: inline-block;
}
button > span {
	margin: auto;
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 1em;
	line-height: 2;
	transform: translateY(-50%) scaleX(0.875);
	width: 100%;
}

/*Slider Checkbox*/
.switch {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 1em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 0.8em;
  width: 0.8em;
  left: 0.1em;
  bottom: 0.1em;
  background-color: black;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #21f375;
}

input:focus + .slider {
  box-shadow: 0 0 1px #21f375;
}

input:checked + .slider:before {
  -webkit-transform: translateX(0.9em);
  -ms-transform: translateX(0.9em);
  transform: translateX(0.9em);
}

/* Rounded sliders */
.slider.round {
  border-radius: 1em;
}

.slider.round:before {
  border-radius: 50%;
}
/*Slider Checkbox*/

.schalter_name{
  font-size: 1em;
}
.frage{
  font-size:1.5em;
}
#donate-button-container{
  position: absolute; left:90%; top:90%;
}
@media only screen and (max-device-width: 1080px) {
  .schalter_name{
    font-size: 2em;
  }
  input:checked + .slider:before {
    -webkit-transform: translateX(1.9em);
    -ms-transform: translateX(1.9em);
    transform: translateX(1.9em);
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 1.8em;
    width: 1.8em;
    left: 0.1em;
    bottom: 0.1em;
    background-color: black;
    -webkit-transition: .4s;
    transition: .4s;
  }
  .switch {
    position: relative;
    display: inline-block;
    width: 4em;
    height: 2em;
  }
  .frage{
    font-size:2em;
  }
  #donate-button-container{
    position: absolute; left:85%; top:96%;
  }
  #text {
    background-color: black;
    color: lime;
    font-family: monospace;
    font-size: 2em;
    line-height: 1.5;
    overflow:hidden;
  }
} 