#Buttons {

    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items:center;
    gap: 15px;
    margin-top: 40px;
  color: black;
    
}

.Drucken {

    width: 45%;
    padding: 12px;
    font-size: 14px;
    border-radius: 8px;
    background-color: lightgray;
    border: none;
    cursor: pointer;
    
}

.Drucken:hover {

    background-color: whitesmoke;

}


#Fragen {


    width: 45%;
    padding: 6px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    background-color: lightgray;
    cursor: pointer;
    text-align: center;
    color: black;
    

}

#Fragen:hover {

    text-decoration: none;
    background-color: whitesmoke;
}

@media print {

    body * {
      visibility: hidden;
      
    }
    .Drucken * {
        display: none;
     
    }     
    
    #Fragen * {
        display: none;
    }

    .Emoji {

        display: none;
        
    }


    #Inhalt * {

        display: none;
        border: none;
    }

    #Vid *, #Hinweis *{

      display: none;
    }


    .section-to-print, .section-to-print * {
      visibility: visible;
    }
    .section-to-print {
      position: absolute;
      left: 0;
      top: 0;
    }


    h1 {

      line-height: 150%;
      margin-bottom: 10px;
    }
  }

  @media all and (max-width: 700px) {


    .Drucken, #Fragen {

        width: 100%;
    }



  }