/* ####################### Style  alle Seiten  #################### */


:root {
   --schrift-color: #fff;
   --schrift-color-hover: #ffee03;
   --background-color: rgb(59, 57, 57);
   --schrift: 'Raleway', san-serif;
}

* {
   padding: 0;
   margin: 0;
}

body {
   font-family: var(--schrift);
   color: var(--schrift-color);
   background-color: var(--background-color);
}

.inhalt{
   max-width: 850px;
   height: auto;
   margin: auto;
   padding: 20px;
}

h1, h2{
   font-family: var(--schrift);
   color: var(--schrift-color);
   font-size: 25px;
   font-weight: 600;
   letter-spacing: 3px;
}

p, pre{
   font-family: var(--schrift);
   font-weight: 300;
   color: var(--schrift-color);
   font-size: 20px;
   line-height: 24px;
   letter-spacing: 2px;
   text-decoration: none;
}

img, video {
   max-width: 100%;
   }


a{ 
   font-family: var(--schrift);
   font-weight: 300;
   color: var(--schrift-color);
   font-size: 20px;
   line-height: 22px;
   letter-spacing: 1px;
   text-decoration: none;
   align-items: center;
}

a:hover{
   color: var( --schrift-color-hover);
}



