@font-face {
  font-family: "classsansregular";
  src: url("classsans-webfont.woff") format("woff");
}
html {
  font-size: 20px;
  font-family: "classsans", Arial, sans-serif;
  font-weight: bold;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

body {
  background-color: whitesmoke;
}

* {
  color: black;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, div, address {
  line-height: 1.3em;
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

input {
  /* background-color: aqua; */
  border: none;

  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(black));
  background-image: linear-gradient(black, black);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0px);
  display: inline-block;
  margin-top: 0.5rem;

  width: 100%;
}

p:empty {
  display: none;
}

:root {
  --fs-h1: 1.5rem;
  --fs-h2: 1rem;
  --fs-p: 1rem;
  --fs-adress: 1rem;
  --fs-li: 1rem;
  --fs-footer: 1rem;

  --hauptfarbe: #ff5ae6;
  --kontrastfarbe-hg: #34bc9e;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(black));
  background-image: linear-gradient(black, black);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0px);
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: var(--fs-p);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--hauptfarbe);
  background-color: whitesmoke;
}

a:hover {
  background-color: pink;
}

address {
  font-size: var(--fs-adress);
  font-style: normal;
  margin-bottom: 1rem;
}

li {
  font-size: var(--fs-li);
}

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin: 2rem;
}
@media (max-width: 767px) {
  .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.logo {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 1rem;
}

.popup {
  background-color: blue;
  outline: 10rem;
  outline-color: red;
  position: absolute;
  display: flex;
  align-content: center;
  z-index: 2;
  width: 80%;
  height: 80%;
}

.form {
/* background-color: lightgreen; */

}

.form__feld {
  /* background-color: #cb1b53; */
  
}


.anmeldung {

  align-content: center;
  background-color: var(--hauptfarbe);
  color: white;
  border-radius: 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 0.5rem;
  width: 50%;
}

.anmeldung input {
  background-color: rgba(255, 0, 0, 0);
  background-image: none;
  margin: 0;
}

@media (max-width: 767px) {
  .anmeldung {
    display: -ms-grid;
    display: grid;
    width: 100%;
  }
}

.anmeldung:hover {
  background-color: var(--kontrastfarbe-hg);
  color: black;
}

.traegerschaft {
  background-color: var(--kontrastfarbe-hg);
  padding: 2rem;
}
.traegerschaft a {
  background-color: var(--kontrastfarbe-hg);
  color: white;
}
.traegerschaft a:hover {
  color: var(--hauptfarbe);
}

.update {
  color: var(--hauptfarbe);
}

.footer {
  font-size: var(--fs-footer);
  height: 100%;
  width: 50vw;
  margin-left: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .footer {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    width: 100vw;
    margin-left: 2rem;
  }
}