/* DATEI: style.css */

/* General Format */

h1,h2,h3,h4,p,ul,ol,li,div,td,th,address,blockquote,nobr,b,i {
 font-family:Arial,sans-serif; }

h1 { font-size:26px; margin-bottom:18px; color: black; }

h2 { font-size:21px; margin-bottom:18px; }

h2.sh2 { font-size:21px; }

h3,h3.xmp,h3.xpl,h3.inf,h3.tip,h3.akt { font-size:16px; }

h4 { font-size:13px; }

p,ul,ol,li,div,td,th,address,blockquote { font-size:13px; color: black;}

blockquote p { 
font-size:13px; 
font-style: normal;
color: black;
quotes: "»" "«"; 
}

body {background-color: grey;}

/* Table */
table, th, td   {
     border: 10px solid black;
     padding: 12px;
     border-spacing: 10px;
     vertical-align: center;
     text-align: center;    
}

th {
  background-color: #000080;
  color: white;
}

td:hover {border: 2px solid #777}

div {
  border: 5px;
  padding: 1px;
  font-weight: bold;
  margin: 1px; 
}

/* Image Gallery */

div.gallery {
background-color: white;
margin: 1px;
border: 1px solid #ccc;
float: left;
width: 250px;
padding: 3px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.flex-container {
  display: flex;
  background-color: #2E9AFE;
}

.flex-container > div {
  background-color: #2E9AFE;
  margin: 10px;
  padding: 10px;
  font-size: 30px;
  font-weight: bold;
  border: 1px #DF013A;
  color: white;
}

/* Horizontal Menu Bar */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active {
  background-color: #0000CD;
}
