@import url('0.css')  all and ( min-width: 0px ) and ( max-width: 579px);
@import url('660.css') all and ( min-width: 580px ) and ( max-width: 1220px);
@import url('1000.css') all and ( min-width: 1221px );

@import url('animation.css');
@import url('schrift.css');

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial;
  box-sizing: border-box;
  background: black;
}


header h1 a {
  text-transform: uppercase;
  text-decoration: none;
  color: #feec30;
}

header h2 {
  color: white;
  text-align: center;
}

#navi-top ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch; /* verteilt die Liste auf 100% bis an die Ränder */
  justify-content: space-between;
  color: #888888;
}

#navi-top ul li {
  list-style: none;
}


#navi-top ul li:last-child {
  display: none;
}

#navi-top a {
  color: #888888;
  text-decoration: none;
  text-transform: uppercase;
}

#navi-top a:hover {
  text-decoration: underline;
}

#headline-big {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

#headline-big-right { /* mit Zentrierungsangaben für den Button, diese werden im Elternelement gemacht */
  display: flex;
  align-items: center; /* Vertikale Zentrierung */
  justify-content: flex-end; /* Horizontale Zentrierung */
}

#headline-big-center {
  text-transform: uppercase;
  display: flex;
  align-items: center; /* Vertikale Zentrierung */
  justify-content: center; /* Horizontale Zentrierung */
  font-family: seymour_onebook, arial;
}

#headline-big-left { /* mit Zentrierungsangaben für das Wappen, diese werden im Elternelement gemacht */
  display: flex;
  align-items: center; /* Vertikale Zentrierung */
  justify-content: flex-start; /* Horizontale Zentrierung */
}

#headline-small {
  width: 100%;
  display: flex;
  justify-content: space-around;
  font-family: seymour_onebook, arial;
}

#menu-button input {
    display: block;
    width: var(--padding-side-general);
    position: absolute;
    cursor: pointer;
    opacity: 0; /* input-Box verstecken */
    z-index: 4; /* und als Trigger ueber dem Hamburger anzeigen lassen */
    -webkit-touch-callout: none;
}

#menu-button input:hover {
  cursor: pointer;
}

#menu-button a {
    transition: color 0.3s ease;
}

#menu-button span { /* die drei Spans werden die Hamburger-Teile */
    display: block;
    border-radius: 3px;
    width: 100%;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #feec30;
    z-index: 5;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menu-button span:first-child {
    transform-origin: 0% 0%;
}

#menu-button span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menu-button input:checked ~ span /* oberer Strich */ {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px) scale(0.69, 0.69);
}


#menu-button input:checked ~ span:nth-last-child(3) {  /* mittlerer Strich, verschwindet */
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menu-button input:checked ~ span:nth-last-child(2) {  /* unterer Strich */
    transform: rotate(-45deg) translate(0, -1px) scale(0.69, 0.69);
}

#navi-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    background: black;
    list-style-type: none;
    transform-origin: 0% 0%;
    transform: translate(-100vw, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 2;
}

#menu-button input:checked ~ div {
    transform: none;
}

#navi-overlay ul {
  padding: 0;
  margin-top: 0;
    height: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

#navi-overlay a {
  text-decoration: none;
  color: #feec30;
}

#navi-overlay a:hover {
  font-weight: bold;
}



main {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #888888;
}

#content {
  background: white;
}

#content p {
  color: black;
}

#content h3 {
  font-family: seymour_onebook, arial;
}

#content h4 a {
  color: black;
  text-decoration: none;
}

#content h4 a:hover {
  text-decoration: underline;
}

#content input, #content textarea, #content input[type="submit"] {
  border-radius: 0;
  border: none;
  background: #feec30;
  box-shadow: none;
}

#content table {
  color: black;
}

#content a {
  color: black;
}

#content a:hover {
  text-decoration: none;
}

.gb-entry {
  float: left;
  color: black;
  background: white;
}


span.gb-entry article p {
  background: #feec30;
}


.embeddedContent {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.embeddedContent iframe,
.embeddedContent object,
.embeddedContent embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.banner figcaption {
  text-align: center;
  animation: blinker 2s linear infinite;
  color: white;
}

@keyframes blinker {  
  50% { opacity: 0; }
}


footer {
  float: left;
  width: 100%;
  background: #888888;
  text-transform: uppercase;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  color: black;
}

#navi-footer ul {
  list-style: none;
  margin: 0;
  color: white;
}
