@CHARSET "ISO-8859-1";

/*
orange: #d48a21; 212 138 33
blue: #347fbe; 52 127 190

html {
	padding: 0;
}*/

*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  //list-style: none;
  box-sizing: border-box;
}

body {
  margin: 0;
  font: normal 100.01% Helvetica, Arial, sans-serif;
  color: black;
  list-style: none;
  background-color: white;
}

p {
  margin: 1em 0 0 1em;
}

p  a {
  color: black; 
}

li {
  margin: 1em 0 0 3em; /* Positionierung des 'zurueck'-Links */
}

iframe {

}

.header {
}

.header1 {
  padding: 35px 10px 2px;
  text-align: center;
  background-color: #347fbe;
  color: white;
}

.header2 {
  padding: 25px 10px 10px;
  text-align: right;
  background-color: #d48a21;
  color: white;
}

.topnav {
  overflow: hidden;
  background-color: #347fbe;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #d48a21;
  color: black;
}

.topnav a.active {
  background-color: #d48a21;
  color: black;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.column {
  float: left;
  padding: 10px;
}
/* Create two unequal columns that floats next to each other */
/* Left column */
.column.left {   
  width: 200px;
}

/* Right column */
.column.right {
  width: 75%;
  //background-color: #f1f1f1;
  padding-left: 20px;
}
/* Add a card effect for articles */
.card {
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column.left, .column.right {
    width: 100%;
  }
}
/* Footer */
.footer {
  font-size: 0.9em;
  margin: 4em 3em 0;
  padding: 0.1em;
  text-align: right;
  color: silver;
  border-top: 1px solid silver;
}
