html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 auto;
    /*margin-left:2em;
    margin-right:2em;*/
    max-width: 1200px;
    /* zweite Wert: rechter Rand, vierter Wert: linker Rand*/
    /*padding: 4em 4em 4em;*/
    padding: 4em 4em 4em 6em;
}

.grid-container {
	display: grid;
	grid-template-rows: width auto;
	grid-template-columns: auto auto auto auto;
	grid-gap: 5px;
  align-items: baseline;
}

p{
 margin-top: 0.25em;
 margin-bottom: 0.25em;
 margin-left: 0em;
 margin-right: 0em;
}

pre{

font-family: "Menlo", monospace;
font-weight:500;
background-color:rgb(250,250,250);
border: 1px solid rgb(0,0,0);
}

h1 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0em;
    margin-bottom: 1em;
}


h2,h3,h4 {
    margin-top: 1.3em;
    margin-bottom: 0.25em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;   
}

samp {
    display: none;
}

/*table, th, td, caption { border-width: thin 0 0 thin; }*/

table, th, td, caption {
  border: 1px solid #a0a0a0;
}
table#Tabelle1, td#Tabelle1, tr#Tabelle1 {
 border: 0;
    box-shadow:0px 0px 0px #888888;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border-width: thin 0 0 thin;
  margin: 0 0 1em;
  table-layout: auto;
  max-width: 100%;
}

th {
  font-weight: bold;
  text-align: left;
  padding: 0.5em;
}
td {
  font-weight: normal;
  text-align: left;
  padding: 0.5em;
}
@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
 }
}
/*Bilder zentrieren*/
.flex { 
    display: flex; 
    justify-content: center; 
    align-items: center;
}
img{
    margin:0;
    max-width: 95%;
    height: auto;
    margin-left: 0em;
}