* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);a
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --color-code-stickerfigure:   #ff0000;
  --color-code-stickerbackground: #ffcc00;
  --color-code-stickertext: #333300;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}
body {
  padding: var(--padding);
  max-width: 35rem;
  margin: 0 auto;
}
main {
  font-size: 1rem;
  margin: 1rem;
}
img {
  width: 100%;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
  cursor: ne-resize;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
}
strong, b {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1rem 3.5rem -1rem;
  text-align: center;
}
.menu {
  display: flex;
  font-size: 1rem;
}
.menu a {
  margin: 0.75rem;
  display: block;
}
.menu a[aria-current] {
  text-decoration: underline;
}
.menu a:hover {
  color: var(--color-code-stickerfigure);
  text-decoration: underline;
}
.social {
  display: flex;
  padding: 0 .5rem;
}
.menu a:hover path,
.menu a:hover circle {
  fill: var(--color-code-stickerfigure)!important;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.button {
  display: block;
  margin: 0.5em 1em 0.5em 0;
  font-weight: 500;
  border-radius: 100px;
  cursor: ne-resize;
}

.section {
  line-height: 1.5em;
  font-size: 1.1em;
  text-align: center;
  margin: 0 0 2rem 0;
}

.section#headline {
  font-size: 2.25em;
  font-weight: 700;
  text-align: center;
  line-height: 1.25em;
}

.section#intro {
  font-size: 1.2em
}

.section#image {
  padding: 0.5rem 2rem;
  margin: 0.25rem auto 1.75rem auto;
  max-width: 20rem;
}

.section #headline {
  font-size: 1.2em;
  font-weight: 500;
  margin: 0 0 0.5em 0;
}

.section#download .buttons {
  margin: 0 0 3em 0;
}

.section#download .button {
  padding: 0.4em 1.5em 0.5em 1.5em;
}

.section#download .button#png {
  background-color: var(--color-code-stickerfigure);

}

.section#download .button#svg {
  background-color: var(--color-code-stickerbackground);
}

.section#contact {
  background-color: #000000;
  color: #ffffff;
  margin: 0 -24px 1em -24px;
  padding: 2.5rem 2rem 2rem 2rem;
}

.section#contact #textarea {
  margin: 0 0 1.5em 0;
}

.section#contact .button {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0.4em 1em 0.5em 1em;
}

.section#more {
  margin: 3em 0 1.5em 0;
}

.section#more .button {
  background-color: var(--color-code-stickerfigure);
  color: #080808;
  padding: 0.2em 0.75em 0.25em 0.75em;
  font-size: 0.75em;
  margin: 0.3em;
}

.section#datenschutz {
  margin: 5rem 0 2rem 0;
}


@media (min-width: 400px) {
  main {
    font-size: 1.1rem;
  }
}

@media (min-width: 600px) {
  main {
    font-size: 1.2rem;
  }
}

@media (min-width: 800px) {
  main {
    font-size: 1.3rem;
  }
  .menu {
    font-size: 1.1rem;
  }
  .k-icon {
    size: medium;
  }
}


@media (min-width: 1200px) {
  main {
    font-size: 1.5rem;
  }
  .menu {
    font-size: 1.2rem;
  }
  .k-icon {
    size: large;
  }
}


@media (min-width: 1600px) {
  main {
    font-size: 1.5rem;
  }
}

@media (min-width: 1800px) {
  main {
    font-size: 1.6rem;
  }
}
