
/* variables*/
:root{
    --white:  #f9f9f9;
    --black:  #000000;
    --gray:   #75787C;
    --yellow: #DDDD00;
    --blue:   #0000ff;
    --red:    #ff0000;
}


/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
 background-color: #000000; font-family: VERDANA, ARIAL,TIMES, NEW ROMAN, sans-serif; overflow: auto;
 margin: 2%; font-size: 100%;
}


p.white{
    font-family:VERDANA, ARIAL, TIMES NEW ROMAN, font-style:normal;
                font-weight:normal; font-size:1em; line-height:1.2;
                text-indent:0pt; margin-left:0pt; color:#DDDDDD
}

p.white2{
    font-family:VERDANA, ARIAL, TIMES NEW ROMAN, font-style:normal;
                font-weight:normal; font-size:1.2em; line-height:1.2;
                text-indent:0pt; text-align:center; margin-left:0pt; color:#ffffff; 
}


p.yellow{
    font-family:VERDANA, TIMES NEW ROMAN, ARIAL, font-style:normal;
                font-weight:normal; font-size:1.2em; line-height:1.2;
                text-indent:0pt; margin-left:0pt; color:#dddd00; 
}

p.eli{
    margin-top: 0cm; margin-right: 1em; margin-bottom: 1em; margin-left: 2em
    }/*Einzug links*/


.trenner {
    style:background-color:#000000; Height:10px; WIDTH:100%; display:flex; justify-content:center;
    align-items:center;
    }

.abstand {
    Height:40px; WIDTH:100%; display:flex;
    }

a {text-decoration: none;}

ul{list-style: none;}


.logo{
  font-family: VERDANA, TIMES NEW ROMAN, ARIAL;
  font-weight:normal;
  font-size:1.3em; 
  color:#ffffff;
  text-shadow:   2px 2px 4px #000000;
  margin-top:    5px;
  margin-left:   5px;
}


/* Header */
.header{
    background-color: #333333;
    box-shadow: 0px 0px 0px 0px var(--gray);
    position: fixed; /* bei sticky wandert das Menü beim Scrollen mit */
    top: 0; left: 2%;
    width: 100%;
}


/* Navi Menü oben */
.nav{
    width:  45%;
    height: 50%;
    position: fixed;
    background-color: var(--gray); /* Menü Hintergrundfarbe Hamburgermenü ausgeklappt */
    overflow: auto;
}

.menu a{
    display: block;
    padding: 0px;
    color: var(--white); /* Menü Schriftfarbe */
}

.menu a:hover{
    background-color: var(--blue); /* Menü Hintergrundfarbe Punkte ausgeklappt */
}


.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Ende Navi Menü oben */



/* Navi Menü unten */
.nav_u{
    width: auto;
    height: auto;
    float: left;
    font-size:1.2em;
    background-color: #111111; /*Menü Hintergrundfarbe box*/
    overflow: hidden;
}

.menu_u a{
    display: block;
    padding: 5px;
    color: var(--white); /*Menü Schriftfarbe*/
}

.menu_u a:hover{
    background-color: #5555aa; /*Menü Hintergrundfarbe Punkte*/
}
/* Ende Menü unten */



/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 10px 40px; /* Abstand oben und rechts */

}

.hamb-line {
    background: var(--white);
    display: block;
    height: 3px;
    position: relative;
    width: 30px;
} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}

/* Hide checkbox */
.side-menu {
    display: none;
}



/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
    overflow: auto;  /* bei hidden kein scrollen wenn Kreuz aktiv */
}


/* Responsiveness */

@viewport {width: device-width;}


/* container bei unter 1190px */
     .container {
     display: flex;
     width: 100%;
     max-width: 1190px;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: start;
     justify-items: center;
     justify-content: center;
     }

 

/*button*/
.button {
    display: flex;
    max-width: 208px;
    min-width: 180px;
    widht:  auto;
    height: 46px;
    background-image: url('button1.gif');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    transition: background-image 0.5s ease-in-out; /* Smooth transition */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1em;
    color: #000000;
}

.button:hover {
    background-image: url('button1a.gif'); /* Change on hover */
}



/* images */
.img_1 {
    max-width: 100%;
    height: auto;
    width:  auto;
    object-fit: cover;
    background: transparent;
}


.img_2 {
    max-width: auto;
    height: auto;
    width:  auto;
    object-fit: cover;
    background: transparent;
}


.img_3 {
    max-width: 100%;
    height: auto;
    width:  auto;
    object-fit: cover;
    background: transparent;
}


/* Werte ab 1200px */
@media (min-width: 1200px) {

   .nav{
        max-height: none;
        top: 0;
        right: 3%; /* Menüpunkte oben rechts Abstand */
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent; /* Hintergrund Menü oben */
    }


    .menu li{
        float: left; /* Punkteausrichtung */
    }


    .menu a:hover{
        background-color: transparent;
        color: #cc6633; /* bei Mauskontakt Farbe der Menüpunkte oben links */
    }


    .hamb{
        display: none;
    }


   /* container ab 1200px */
    .container {
     display: flex;
     max-width: 100%:
     background-color: var(--black);
     align-items: center;
     justify-items: center;
 
     }



}/*Ende Media*/
