
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');
@media (min-width: 45em) { 
    
    body {        
        font-family: sans-serif;
        color: rgb(24, 22, 22);
        background: #E8E8E8;
        margin: 0 auto;
        display: grid;
        gap: 0.1em;
        grid-template-columns: auto;	/* eine Spalte */
        grid-template-rows: 120px auto;  /* zwei Zeilen */
        max-width: 200em;
        min-height: 62em;
        font-family: sans-serif;
    }
}


header {
	display: grid;  
  grid-column: 1 / -1;
  grid-row: 1;
  grid-template-columns: 150px 1fr 150px;
  background: #E8E8E8;
}

header > section > ul {
    display: inline-flex;
}

header > section > ul > li {
    margin-left: 2em;
    font-size: 1.2em
}

header > section > p {
    font-family: 'Lucida Handwriting';
    font-size: 2.4em;
    font-weight: bold;
    line-height: 0.8em;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

header .link-button {
    background: none;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    color: blue;
    text-decoration: solid;
    margin-left: 40px;
    cursor: pointer;
  }

  header .link-button:focus {
    outline: none;
  }

  header .link-button:active {
    color:red;
  }

p.U1H {
  font-weight: bold;
  font-size: 1.8em;
}

p.U2H {
  font-weight: bold;
  font-size: 1.4em;
}

p.N2 {
  text-align: justify;
}

main {
        background: url('/inc/pic/p001.jpg') no-repeat center center;
        background-size: contain;
        height: 80vh;
}

/*
main div.pic2 {
        background: url('/inc/pic/pic2.jpg') no-repeat top left;
        background-size: contain;
        height: 100vh;
        position: relative;
}
*/
main p.UP1 {
    font-size: 2em;
    font-weight: bold;
}


.fullpic {
    width: 100%;
    height: auto;
}

table.T1 {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}


/* Popupfenster breit
==================================================================================*/

  .popup .content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-150%) scale(0);
   width: 800px;
   height: auto;
   z-index: 2;
   text-align: center;
   padding: 16px;
   border-color:rgb(50, 50, 180);
   border-style: solid;
   border-width: 2px;
   border-radius: 10px;
   background: #efefef;
   
   z-index: 1;
  }
  
  .popup .close-btn {
   position: absolute;
   right: 20px;
   top: 20px;
   width: 30px;
   height: 30px;
   color: white;
   font-size: 30px;
   border-radius: 50%;
   padding: 2px 5px 7px 5px;
   background: rgb(20, 50, 220);
   
   }
  
  .popup.active .content {
  transition: all 300ms ease-in-out;
  transform: translate(-50%,-50%) scale(1);
  }



/* Popupfenster schmal
==================================================================================*/

  .popupS .content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-150%) scale(0);
   width: 300px;
   height: auto;
   z-index: 2;
   text-align: center;
   padding: 16px;
   border-color:rgb(50, 50, 180);
   border-style: solid;
   border-width: 2px;
   border-radius: 10px;
   background: #efefef;
   
   z-index: 1;
  }
  
  .popupS .close-btn {
   position: absolute;
   right: 20px;
   top: 20px;
   width: 30px;
   height: 30px;
   color: white;
   font-size: 30px;
   border-radius: 50%;
   padding: 2px 5px 7px 5px;
   background: rgb(20, 50, 220);
   
   }
  
  .popupS.active .content {
  transition: all 300ms ease-in-out;
  transform: translate(-50%,-50%) scale(1);
  }


  /* Einstellungen für <button>
---------------------------------------------------------------------------------- */
main .btn-group .button {
    background-color: #AAAAAA;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 4px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    float: none;
  }
  main .btn-group .smartbutton {
    background-color: #AAAAAA;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 4px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    float: none;
  }
  
 main .btn-group .button:hover {
    background-color: #3ed13e;
  }


 main .smartbutton:hover {
    background: #111177;
    background: var(--smartbackground);
  }