/**Style-CSS*****************/

:root {
  --hell: rgb(213, 228, 235);
  --dunkel: rgb(21, 24, 65);
}

/*ANCHOR Body Style************/

body {
  --color-blue:#03bfee;
  --color-green:#13f270;
  --color-grey:#898989;
  --color-black:#191919;
  --color-white:#e1e1e1;
  --color-yellow: #c1de04;
  --color-purple:#cb06d9;
  --color-red: #FF0A0A;
  --line: 3ch;
  --font: IBM, sans-serif;
  --font-scale: 0.2vw;
 }

 *{
  box-sizing:border-box;
}

 body.invert {
  --color-blue:#0856af;
  --color-green:#1f864a;
  --color-grey:#6e6e6e;
  --color-black:#dcdcdc;
  --color-white:#191919;
  --color-yellow: #e37c02;
  --color-purple:#9e02e1;
  --color-red: #c61340;
 }

body {
    margin: 0;
    background: var(--color-black);
    font-family: var(--font);
    font-weight: 400;
    font-style: normal;
    font-size: calc(1rem + var(--font-scale));
    line-height:var(--line);
    color:var(--color-white);
}

 /**ANCHOR Link Colors***************/
.link-blue,
.link-green,
.link-purple,
.link-grey,
.link-white,
.link-red {
  cursor:pointer;
}

.link-blue{
  color: var(--color-blue);
   }

 .link-green{
   color: var(--color-green);
}

.link-purple{
  color: var(--color-purple);
   }

.link-grey{
  color: var(--color-grey);
     }

.link-white{
   color: var(--color-white);
       }

.link-red{
  color: var(--color-red);
         }

.link-red:hover{
   color: var(--color-blue);
   background: var(--color-red);
}

.text-green{
  color: var(--color-green);
}  

.text-grey{
color:var(--color-grey);}

.text-smaller{
font-size:smaller}


/*ANCHOR Fonts*****************/

@font-face{
 font-family:"IBM";
 src: url(./fonts/IBMPlexMono-Regular.ttf) format("truetype");
 font-weight: 400;
 font-style: normal;
 font-display: swap;
}

@font-face{
  font-family:"IBM";
  src: url(./fonts/IBMPlexMono-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
 }

 @font-face{
  font-family:"IBM";
  src: url(./fonts/IBMPlexMono-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
 }

 @font-face{
  font-family:"IBM" ;
  src: url(./fonts/IBMPlexMono-ExtraLightItalic.ttf) format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
 }

 @font-face{
  font-family:"UnifrakturCook" ;
  src: url(./fonts/UnifrakturCook-Bold.ttf) format("truetype");
  font-weight: 200;
  font-style: poppins;
  font-display: swap;
 }

 /*ANCHOR Header******************/
 
header {
width: 100%;
  max-width: 1600px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: inline;
}

/*ANCHOR Teaser Bild***************/
.teaser {
  width: 100%;
  height: 300px;
}

.teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 800px) {
  .teaser {
    height: 600px;
  }
}


/*ANCHOR - Navbar Navigation******************/
 nav {
  --background-color: #314453;
  --darker-background: #243848;
  --accent-color: #41dce1;
  --text-color: #ffffff;
  --navbar-height: 80px;
  --color-green:#13f270;
  }

 nav *{
    margin: 0;
    padding: 0;
    color: var(--text-color);   
    
  }

  nav .logo{
    margin-left: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-variant: small-caps;
    text-decoration: none;
  }

nav{ 
  position: sticky;
  top: 0;
   height:  var(--navbar-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
 }

nav ul{
  height: 100%;
  display: flex;
  flex-direction:row;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

nav li{
   height: 100%;
  width: 150px;
  text-align: center;
  position: relative;
}
nav li:hover{
  background-color: var(--accent-color);
}
  
nav ul a{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  }

/*ANCHOR Navbar Dropdown-Menü************/

.dropdown{
    height: min-content;
    width: 200px;
    background: var(--background-color);
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: var(--navbar-height);
  }
   
.dropdown li{
    height: 70px;
    width: 100%;  
}

.dropdown li a{
    justify-content: flex-start;
    padding-left: 30px;
    width: calc(100%-30px);  
}
/*ANCHOR - Hover Menü***** Ein und Aus Schalten*********/

nav li:hover .dropdown{
    display: flex;
 }

nav input[type="checkbox"]{
    display: none;
}

.expandable_li{
     display: flex;
     justify-content: center;
     align-items: center;
}    

/*ANCHOR - Toggle-Button**************/

.toggle_button{
    width: 30px;
    height: 23px;
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.bar{
  height: 4px;
  width: 100%;
  background: var(--text-color);
  border-radius: 100px;
}

/*ANCHOR - Invert-Button**************/

.invertbutton{
  text-decoration: none;
  cursor:pointer;
}
.invertbutton:hover{
  background-color: var(--accent-color);
}


/*ANCHOR - Media Querly****************/

@media(max-width: 980px){
  .toggle_button{
     display: flex;  
    }

 #toggle_button:checked ~ ul{
      display: block;
    }
    
    .invertbutton{
      height: min-content;width: 100%;
      top:0px;
      background: var(--background-color);
      flex-direction: column;
      justify-content: space-between;
  }

  .invertbutton:hover{
    background-color: var(--accent-color);
  }
    nav ul{
      height: min-content;
      width: 100%;
      background: var(--background-color);
      display: none;
      position: absolute;
      top: var(--navbar-height);
    }
    nav li{
      height: min-content;
      width: 100%;
    }
    nav ul a{
      padding: 30px 0;
    }
    .expandable_li{
      display: block;
    }
    .expandable_li label{
      padding: 30px 0;
      cursor: pointer;
      display: block;
    }
    .expandable_li:hover .dropdown{
      display: none;
    }
    .expandable_li input[type="checkbox"]:checked ~ .dropdown{
      display: block;
    }
/*Dropdown***/
    .dropdown{
       position: static;
       width: 100%;  

    }
    .dropdown li{
      padding: 0;
      display: block;
      position: static;
      background: var(--darker-background);
    }
    .dropdown li a{
      width: 100%;
      padding: 0;
      justify-content: center;
    }
       }

footer,
nav {
  backdrop-filter: blur(8px);
}

/*ANCHOR Seitenstruktur********************/
.mitte {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; 
 }
 

main{
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px;
  }

section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  box-sizing: border-box;
  line-height: 3ch;
  }

/*ANCHOR Footer Styles*/
.footer{
  margin: 0;
  padding: 0;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   font-weight: 500;
   font-family:"IBM";
   font: bolder;
  list-style: none;}

.footer > ul{
  margin: 0;
  padding: 0;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   font-weight: 500;
   font-family:"IBM";
   font: bolder;}

   .footer > ul li {
    list-style: none;
    color: var(--color-green);
    margin: 0;
    padding: 0;
  }

.footer,
nav {
  backdrop-filter: blur(8px);
}

.footer ul li
{
  padding: 10px;
}

/*ANCHOR Content Style*****/

h1, h2{
font-family: "IBM";
color: var(--color-blue);
font-size: calc(1.6rem + var(--font-scale));
font-weight: 200;
line-height: var(--line);
margin: 0;
text-decoration: none;
list-style-type: none;
}

h2
{color:var(--color-blue);
font-size:calc(1.6rem + var(--font-scale));
font-weight:200;line-height:var(--line);
margin :0}

ul {
  list-style-type: none;
  }

h4 {
  font-family:"UnifrakturCook";
  color: #210e87;
  }


a {
  text-decoration: none;
}

.point-list>ul{list-style:"- ";padding-left:1.2em}

img.displayed {
  display: block;
  margin-left: auto;
  max-width: 100%;
  height: auto;
  border-color:#0066ff;
  border-width:6px; /*Rahmenbreite.*/
  border-style:solid; /* Linienart Durchgezogene*/
  border-radius:6px;
  margin-right: auto }


   /*ANCHOR - Media Query**********/

 @media screen and (max-width:768px){
        h4 {
         font-size: 1.5rem;
         }}
       
 @media screen and (min-width:769px){
        h4 {
         font-size: 3rem;
         }}  

         @media screen and (max-width:768px){
          .mitte img{
           width: 20%;
           height: 20%;
            }}   
            @media screen and (min-width:769px){
              .mitte img{
                width: 30%;
                height: 30%;
                   }}   
                   
         
        
        

    
 

