body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: calc(0.8em + 1vmin);
    line-height: calc(1.1em + 1vmin);
    padding: 2vmin 2vmin 2vmin 2vmin;
    max-width: 120em;
}
header {
  height: 85px;
}

h1 {
  background-color: rgb(22, 65, 148);
  line-height: 1.5;
  margin-top:0;
  padding: 0.4em;
  color: white;
}
h2 {
	background-color: rgb(170, 210, 255);
  padding: 0.4em;
  font-size: 1.1em;
  color: #1a1f3e;
}
h3 {
  color: #1a1f3e;
  padding: 0.4em;
  border-bottom-color: #1a1f3e;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

input {
  font-size: 29px;
  background-color:#ffef83;
  border-style: solid;
  border-width: 2;
  border-color: black;
}

a {
  color: #ad005f;
  text-decoration: underline; 
  text-underline-offset: 5px; 
  text-decoration-thickness: 2px;
  text-decoration-color: #ad005f;
  line-height: 2em;
}

a:focus {
  color:#1a1f3e;
  background-color: #aad2ff;
  outline-style: solid;
  outline-color:#ad005f;
  outline-width: thick;
  border-style: none;
  text-decoration: none;
}

p {
  padding-left: 0.4em;
  padding-right: 0.4em;
}

button[disabled="true"]{
    background-color: lightgrey;
    color: black;
}
button[disabled="true"]:hover {
  background-color: lightgrey;
  color: black;
}

button {
    background-color: rgb(22, 65, 148);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight:bold;
}
button:hover {
    background-color: rgb(170, 210, 255); /* Green */
    color: black;
    font-weight:bold;
}



section.container {
  width: 45em;
  max-width: 90%;
  margin: auto;
}

section {
  padding-bottom: 4vmin;
  padding-top: 4vmin;
}
header {
  width: 50em;
  max-width: 100%;
  margin: auto;
}

.wrap-element {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.wrapped-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}


.codespan {
  color: #ad005f;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 95%;
}



/*Navigationsbereich - Header und Hamburger*/
#page-nav {
  width: 100%;
}

/* Desktopansicht - weg mit Hamburger */
#page-nav label, #hamburger {
  display: none;
}

/* Menu Items */
ul.desktopmenu {
  list-style-type: none;
  margin: 40px 5% 0 0;
  float: right;
  vertical-align: top;
  font-size: 17px;
  font-weight: 600;
}
ul.desktopmenu li {
  display: inline-block;
}

ul.desktopmenu a {
  color:#1a1f3e;
  margin-left: 2px;
  padding: 10px 15px 10px 15px;
  background-color: #aad2ff;
  box-sizing: border-box;
  border-color: #1a1f3e;
}
ul.desktopmenu a:hover {
  background-color:#1a1f3e;
  color:#ff1593ff;
  border-color: #ff1593ff;
}
ul.desktopmenu a:focus {
  background-color:#1a1f3e;
  color:#ff1593ff;
  border-color: #ff1593ff;
}

/*mobilmenu ausblenden*/
div.mobilmenu {
  display: none;
}



/* Mobilversion */
@media screen and (max-width: 1103px){
  header {
    height: 50px;
  }
  #logo {
    float: none;
    display: block;
    height: 70px;
  }
  /* Einblenden Hamburger */
  #page-nav #hamburger {
    display: block;
    border-width: 3px;
    color: #1a1f3e;
    background-color: #aad2ff;
    background-image: url("img/burger.svg");
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    font-style: normal;
    font-size: 1.2em;
    padding: 20px;
    float: none;
    text-align: center;
    margin-left:45%;
    margin-right:45%;
  }

  [type="checkbox"] { 
    -webkit-appearance: none;
    appearance: none;
}
  #page-nav #hamburger:focus {
    background-color: #ad005f;
  }

 /*Ausblenden Desktopmenue*/
 div.desktopmenu {
    display: none;
  }
  #page-nav input:checked ~ div.mobilmenu {
    border-top: 3px solid #1a1f3e;
    display:block;
    --cont: max-content;
    height:var(--cont);
    position: relative;
    background-color: #aad2ff;
    width: 100%;
    visibility: visible;
    text-align: center;
    opacity: 1;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
  }
  header {
    height: var(--cont)+10;
  }
  .mobilmenu ul{
    padding-left: 0px;
  }
  .mobilmenu li {
  list-style: none;
  }
  .mobilmenu li a {
      display: block;
      color: #1a1f3e;
      padding: 10px 5%;
      border-bottom: 1px solid rgba(0,0,0,.03);
      font-size: 14px;
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
      font-size: 17px;
      font-weight: 600;
  }
  .mobilmenu li a:hover {
    background-color: #1a1f3e;
    color: #ff1593ff;
  }
  .mobilmenu li a:focus {
    background-color: #1a1f3e;
    color: #ff1593ff;
  }
}

/*Accordion*/
.accordion {
  margin: 0;
  padding: 0;
  font-weight: normal;
  border: 3px solid #1a1f3e;
  /*border-radius: 7px;*/
  width: 100%;
}
.accordion-title {
  font-size: calc(0.8em + 1.1vmin);
  font-weight: normal;

}
.accordion h3 {
  margin: 0;
  padding: 0;
}

.accordion:focus-within {
  border-color: #1a1f3e;
}

.accordion h3 {
  background-color: #aad2ff;
  cursor: pointer;
}

.accordion > * + * {
  border-top: 1px solid hsl(0deg 0% 52%);
}

.accordion-trigger {
  background: none;
  color: hsl(0deg 0% 13%);
  display: block;
  margin: 0;
  padding: 1em 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
}

.accordion-trigger:focus,
.accordion-trigger:hover {
  background: #164194;
  border-color: #ad005f;
  color: white;
  cursor: pointer;
}

.accordion-trigger:focus {
  outline: 4px solid transparent;
}
/*
.accordion > *:first-child .accordion-trigger,
.accordion > *:first-child {
  border-radius: 5px 5px 0 0;
}

.accordion > *:last-child .accordion-trigger,
.accordion > *:last-child {
  border-radius: 0 0 5px 5px;
}
*/
button {
  border-style: none;
}

.accordion button::-moz-focus-inner {
  border: 0;
}

.accordion-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding: 0.25em;
  outline: none;
}

.accordion-icon {
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}

.accordion-trigger:focus .accordion-icon,
.accordion-trigger:hover .accordion-icon {
  border-color: white;  
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-panel {
  margin: 0;
  padding: 1em 1.5em;
}

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordion-panel[hidden] {
  display: none;
}


/*Tabelle*/
table td, table th {
padding: 0.5rem 0.75rem;
vertical-align: middle;
border: 3px solid black;
}
tr:nth-of-type(odd) {
  background-color:#ccc;
}
td:nth-of-type(odd) {
  background-color:#ffef83;
  }
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 3px solid black;
}



/*Farben:
/*Farben:
#ad005f - dunkles Pink
#ff1593ff - Pink
#ffef83 - Gelb
#1a1f3e - Dunkelblau
#aad2ff - Hellblau
rgb(22, 65, 148) - Mittelblau
*/