@charset 'utf-8';

/* ¡Renormasaniset */
*, ::before, ::after {background-repeat: no-repeat; box-sizing: border-box;} html {-webkit-text-size-adjust: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-hyphenate-limit-before: 4; -webkit-hyphenate-limit-after: 4; -ms-hyphenate-limit-chars: 8 4 4; hyphenate-limit-chars: 8 4 4; -webkit-hyphenate-limit-lines: 3; -ms-hyphenate-limit-lines: 4; hyphenate-limit-lines: 4; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; overflow-y: scroll;} body {background-color: transparent;} a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,button,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,input,kbd,label,legend,li,main,mark,menu,nav,object,ol,option,output,p,pre,q,ruby,s,samp,section,select,small,span,strike,strong,sub,summary,sup,table,tbody,td,textarea,tfoot,th,thead,time,tr,tt,u,ul,var,video {margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;} article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;} input {overflow: visible;} button, [type="button"], [type="reset"], [type="submit"] {-webkit-appearance: button;} [type="checkbox"], [type="radio"] {padding: 0;} [type="search"] {-webkit-appearance: textfield; outline-offset: -2px;} textarea {overflow: auto; resize: vertical;} ::-webkit-input-placeholder {color: inherit; opacity: 0.4;} :-webkit-search-decoration {-webkit-appearance: none;} [hidden] {display: none;} audio, video {display: inline-block;} a {background-color: transparent; text-decoration:none } a, area, button, input, label, select, summary, textarea, [tabindex] {-ms-touch-action: manipulation; touch-action: manipulation;} ol,ul{list-style:none} blockquote,q{quotes:none} blockquote:after,blockquote:before,q:after,q:before{content:'';content:none} table{border-collapse:collapse;border-spacing:0} b,strong{font-weight:bold} em,i{font-style:italic} h1,h2,h3,h4,h5,h6{font-weight:400} button, input, select, textarea {font-family: inherit; font-size: inherit; line-height: inherit;} abbr[title]{text-decoration: underline; text-decoration: underline dotted; cursor:help;} img {border-style: none; -moz-user-select: text; -webkit-user-select: text; user-select: text; -moz-user-drag: none; -webkit-user-drag: none; user-drag: none;} svg {fill: currentColor;} svg:not(:root) {overflow: hidden;} 
/* Renormasaniset! */

:root {
--b: 0,130,190;    /* Farbe */
--pad: 2em;        /* Global Padding */
scroll-behavior: smooth;
}

@font-face {
font-family: 'Lato';
src: url("../fonts/lato-regular.subset.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lato';
src: url("../fonts/lato-700.subset.woff2") format("woff2");
font-weight: bold;
font-style: normal;
font-display: swap;
}


body {
font-family: 'Lato', Avenir, Arial, sans-serif;
font-size: 20px;
line-height: 1.4em;
color: white;
background: rgb(var(--b));
padding: var(--pad);
display: flex;
flex-flow: column nowrap;
justify-content: center;
gap: var(--pad);
}

body > * {
display: flex;
flex-flow: column nowrap;
width: 18em;
max-width: 100%;
/* height: fit-content; */
}


a {
transition: all 250ms ease-in;
}

::selection {
background: black;
color: white;
}


article p,
article > ul:not(.obj), 
article > ol:not(.obj) {
margin: 0 0 .5em 0;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}

article > *:not(.obj) > li {
display: flex;
flex-flow: row nowrap;
margin: 0 0 .35em 0;
}

article > ul:not(.obj) > li:before {
content: '» ';
display: block;
flex: 0 0 .75em;
width: .75em;
color: black;
}

article > ol:not(.obj) {
counter-reset: liste;
list-style-type: none;
}

article > ol:not(.obj) > li:before {
counter-increment: liste;
content: counter(liste) ".";
display: block;
flex: 0 0 1em;
font-weight: bold;
color: black;
}

h1 {
margin: auto auto 1em auto;
}

h1 svg:not(:root) {
display: block;
overflow: visible;
}

h1 svg .k {
fill: black;
}

h1 svg #w:hover {
fill: rgba(255,255,255,.25);
transform-origin: 54.371px 3.7765px;
transform: scale(12) rotate(27deg);
transition: transform 750ms ease-out, fill 750ms ease-in;
}

h2 {
font-weight: bold;
}

article {
max-width: <##>;
margin: 0 auto auto auto;
}

article#main {
display: flex;
min-height: 100vh;
}

article#main div {
margin: auto 0;
}

article#impressum * {
font-size: .75em;
line-height: 1.45em;
}


article a {
color: white;
border-bottom: .1em solid rgba(255,255,255,.1);
}

article a[href^='tel:'],
article a[href^='fax:'] {
border-bottom-color: transparent;
}

article a:hover {
border-bottom-color: white;
}

article p span {
color: rgba(255,255,255,.5);
}



/* ############# Screens bis 640px ############# */
@media only screen and (max-width: 640px) {

  :root {
	--pad: 1em;
	}

}