body
{
   background-color: #fefefe;
   margin: 2%;
   font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
   font-weight:400;
   font-style:normal;
   color: #000;
   z-index:0;
}

.header_img
{
   max-width: 290px;
   width: 100%;
   height:auto;
   padding-left:15px;
   padding-right:5px;
}

.nav_oben
{
   width:100%;
   height:auto;
   margin:0rem;
   z-index:1000;
}

nav
{
   color: #000;
   display: flex;
   justify-content: space-between;
   align-items: center;
line-height:2.5rem;
}
   
.li_letters
{
   list-style-type: lower-alpha;
}

.menu
{
   gap: 0.5rem;
}  

.menu a
{
   font-size:1.2em;
   font-weight:700;
   color: #000;
   background: linear-gradient(to bottom, #ffd12d 0%,#ffdc54 50%,#ffd000 51%,#ffeca0 100%);
   border: 1px solid #AFAFAF;
   text-transform: uppercase;
   padding:5px;
}  
   
.burger
{
   display: none;
   flex-direction: column;
   cursor: pointer;
   gap: 15px;
}

.burger:hover
{
   box-shadow:none;
}

.burger div
{
   width: 50px;
   height: 5px;
   background-color:#000;
}

@media (max-width: 980px)
{
   .menu
   {
      display: none;
      flex-direction: column;
      background-color: #fff;
      left: 0;
      width: 90%;
      padding: 1rem;
      font-size:1.2em;
   }

   .menu.show
   {
      display: flex;
   }

   .burger
   {
      display: flex;
   }
}


.clear
{
   clear: both;
}

a
{
   color: #D20500;
   font-weight: 700;
}

h2
{
   background: linear-gradient(to bottom, #ffd12d 0%,#ffdc54 50%,#ffd000 51%,#ffeca0 100%);
}


button
{
   background: linear-gradient(to bottom, #ffd12d 0%,#ffdc54 50%,#ffd000 51%,#ffeca0 100%);
}

