/*
* Mixin for basic CSS triangles
* @include triangle(up, #000, 50px);
* @include triangle(bottomleft, #000, 50px);
*/
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, main, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, main, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

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

@font-face {
  font-family: "Bozon";
  src: url("../fonts/Bozon-Regular.eot");
  src: url("../fonts/Bozon-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Bozon-Regular.woff") format("woff"), url("../fonts/Bozon-Regular.ttf") format("truetype");
  /*url('../fonts/Bozon-Regular.svg#7085d44e40962544d777724f36414970') format('svg'); */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Bozon";
  src: url("../fonts/Bozon-RegularItalic.eot");
  src: url("../fonts/Bozon-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Bozon-RegularItalic.woff") format("woff"), url("../fonts/Bozon-RegularItalic.ttf") format("truetype");
  /*url('../fonts/Bozon-RegularItalic.svg#7085d44e40962544d777724f36414970') format('svg'); */
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "Bozon";
  src: url("../fonts/Bozon-Bold.eot");
  src: url("../fonts/Bozon-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Bozon-Bold.woff") format("woff"), url("../fonts/Bozon-Bold.ttf") format("truetype");
  /*url('../fonts/Bozon-Bold.svg#7085d44e40962544d777724f36414970') format('svg'); */
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Bozon";
  src: url("../fonts/Bozon-BoldItalic.eot");
  src: url("../fonts/Bozon-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Bozon-BoldItalic.woff") format("woff"), url("../fonts/Bozon-BoldItalic.ttf") format("truetype");
  /*url('../fonts/Bozon-BoldItalic.svg#7085d44e40962544d777724f36414970') format('svg'); */
  font-style: italic;
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Bozon", sans-serif;
  font-weight: 700;
}

h1 {
  margin: 1.5rem 0;
}

h2 {
  margin: 1rem 0;
}

h3 {
  margin: 0.75rem 0;
}

h4 {
  margin: 0.5rem 0;
}

p, a, ul, li {
  font-family: "Bozon", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

a {
  text-decoration: none;
}

ul {
  margin-left: 1rem;
}

li {
  list-style-type: square;
}

.footer, .footer a {
  color: #fff;
}

.footer a:hover {
  text-decoration: underline;
}

.datenschutz-h1 {
  font-size: 3rem;
}

body {
  background: linear-gradient(45deg, hsl(100, 54%, 20%) 0%, hsl(100, 54%, 55%) 100%);
  min-height: 100vh;
}

h1, h2 {
  flex: 0 0 100%;
  color: #fff;
  text-align: center;
  margin: 1rem 0;
}

h1 {
  font-size: clamp(1.25rem, 0.7955rem + 2.2727vw, 2.25rem);
}

h2 {
  font-size: clamp(1rem, 0.6591rem + 1.7045vw, 1.75rem);
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}
a:hover {
  color: #f0f0f0;
}

.wrapper {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 200px);
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 4rem;
  margin-bottom: 3rem;
}
.nav__a {
  display: block;
  padding: 0.75rem 1rem;
  color: hsl(100, 54%, 20%);
  background: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.logo-wrapper {
  margin-bottom: 2rem;
}
.logo-wrapper a {
  display: flex;
  justify-content: center;
}

#logo {
  width: 80%;
  max-width: 480px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}
main * {
  color: #fff;
}

.footer {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.footer__inner {
  height: 200px;
  width: 200%;
  transform: skewY(-5deg);
  transform-origin: 50% 50%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer__inner--reset {
  transform: skewY(5deg);
  width: 100vw;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .footer__inner--reset {
    flex-direction: row;
  }
}
.footer__left, .footer__right {
  text-align: center;
  margin: 1rem 0;
}
@media only screen and (min-width: 48em) {
  .footer__left, .footer__right {
    flex: 0 0 50%;
    padding: 2rem;
  }
}
@media only screen and (min-width: 48em) {
  .footer__left {
    text-align: left;
  }
}
@media only screen and (min-width: 48em) {
  .footer__right {
    text-align: right;
  }
}/*# sourceMappingURL=main.css.map */