/* Gemeinsames Aussehen für Impressum und Datenschutzerklärung.
   Bewusst eine eigene Datei: beide Seiten sollen identisch aussehen,
   und der Text soll ohne das Formular drumherum lesbar sein. */

:root{ --orange:#F08325; --ink:#1a1a1a; }

@font-face{
  font-family:'Creato Display';
  src:url('/schriften/CreatoDisplay-Light.woff2') format('woff2');
  font-weight:300; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Creato Display';
  src:url('/schriften/CreatoDisplay-Regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Creato Display';
  src:url('/schriften/CreatoDisplay-Bold.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Creato Display';
  src:url('/schriften/CreatoDisplay-ExtraBold.woff2') format('woff2');
  font-weight:800; font-style:normal; font-display:swap;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background:var(--orange);
  color:var(--ink);
  font-family:'Creato Display',"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:18px;
  line-height:1.6;
}

.wrap{max-width:820px;margin:0 auto;padding:36px 20px 80px;}
.logo{display:block;max-width:260px;width:100%;height:auto;margin:0 auto 28px;}

.blatt{
  background:#fff;
  border-radius:8px;
  padding:34px 38px 40px;
  box-shadow:0 2px 12px rgba(0,0,0,.18);
}

h1{font-size:34px;font-weight:800;margin:0 0 .7em;letter-spacing:-.01em;}
h2{font-size:22px;font-weight:700;margin:1.9em 0 .5em;}
h2:first-of-type{margin-top:1.2em;}
p{margin:0 0 1em;}
ul{margin:0 0 1em;padding-left:1.3em;}
li{margin:0 0 .35em;}
a{color:#8a4a10;}

.anschrift{
  border-left:5px solid var(--orange);
  padding:2px 0 2px 16px;
  margin:0 0 1.4em;
}
.klein{font-size:15px;color:#6b6b6b;}
.stand{margin-top:2.4em;font-size:15px;color:#6b6b6b;}

.zurueck{display:block;text-align:center;margin:26px 0 0;color:var(--ink);}

@media(max-width:560px){
  body{font-size:17px;}
  .blatt{padding:24px 20px 30px;}
  h1{font-size:28px;}
  h2{font-size:20px;}
}
