:root{ --schrift-color: #efefef;
       --schrift-text2: #757171; 
       --schrift-text2-hover: #eed70d; 
       --background: rgb(42, 42, 60);
       --eingabefeld: #000;
       --senden: #1b1b1b;
       --error: rgb(248, 0, 0);
       
       --schrift: 'Raleway' , san-serif; 
} 
       
a:link { text-decoration: none; }   
a:active  { text-decoration: none;} 
a:visited { text-decoration: none; }  
a:hover { text-decoration: none; }  
      
       
*{  
  margin: 0; 
  padding: 0;}   
       
html{ 
     height: 100%;
     background-color: var(--background);
   }

.inhalt{
   max-width: 1400px;
   max-height: auto;
   margin: auto;
}

button{
   background-color: var(--background);
   color: var(--schrift-color); 
   letter-spacing: 1px;
   font-size: 14px;
   cursor: pointer;
   padding: 2px 5px;
   border: solid thin var(--schrift-color);   
   border-radius: 3px;
   margin: 5px;
}
       
img, video { 
      max-width: 100%;
           }
    
#myBtn {
      display: none;
      position: fixed;
      bottom: 10px;
      right: 20px;
      z-index: 99;
      font-size: 12px;
      font-weight: 300;      
      outline: none;
      background-color: var(--background);
      color: var(--schrift-color); 
      cursor: pointer;
      padding: 3px 5px;
      border: solid thin var(--schrift-color);   
      border-radius: 3px;
    }
    
     
.box{ max-width: 1920px; 
          height: auto; 
          margin: auto;
         }
        
p, a{
   color: var(--schrift-color);
   font-family: var(--schrift);
   letter-spacing: 1px;
   font-size: 17px;
}        
     
h1{
   color: var(--schrift-color);
   font-family: var(--schrift);
   letter-spacing: 2px;
   font-size: 25px;
   font-weight: 500;
}          
       