/* css/base.css */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


  * {
    font-family:  "Bricolage Grotesque", sans-serif;

  }
body {
   margin: auto;
    
    color: rgb(114, 84, 84);
    min-height: 100vh;
    display: flex;
    background: #23232a;
  

  
        transition: opacity 0.5s ease;
      
      
     
      
    
    
}
 body.fade-out {
        opacity: 0;
      }
/*  Füge hier weitere grundlegende Stile hinzu, z.B.: */

h1, h2, h3, h4, h5, h6 {
    /* Stile für Überschriften */

    color: rgb(230, 230, 230)
    ;
  
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

a {
   
    text-decoration: none;
}





