@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');

:root {
  font-size: 16px;
}

/* Standard */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #2C634C;
  font: 0.938em Calibri, sans-serif;
  line-height: 1.3;
}

#wrapper {
  position: relative;
  max-width: 720px;
  margin: 1rem auto;
  border: solid 0px #2C634C;
  background: #DBECCC;
  overflow: hidden;
  padding: 2rem;
  text-align: left;
}

a {
  color: #2C634C;
  text-decoration: none;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0rem 0rem 1rem 0rem;
  padding: 0rem 0rem 0rem 1.5rem;
  font-size: 1em;
  line-height: 1.3em;
  font-weight: normal;
}
h1:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.1em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.5rem;
}
h1 small {
  font-size: 0.7em;
}

h2 {
  font-size: 1.475em;
  line-height: 1.1em;
  padding: 0rem 0rem 0.5rem 0rem;
}

ul {
  padding: 0rem 0rem 1rem 0rem;
  list-style: none;
}

li {
  padding-left: 0.6rem;
}

/* >: 003e / 25A0 - square / 2010 - dash (Dau -) / 2212 - long dash  (Dau -) / 25B6 - triangle*/
li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.1em;
  position: relative;
  float: left;
  top: -2px;
  margin-left: -0.6rem;
}

/* Ende Standard */

/*main*/

/*End main*/

/* Header */
header {
  padding: 0rem 0rem 0rem;
  text-align: center;
}
header aside {
  position: relative;
}

header aside a {
  position: absolute;
  bottom: 2%;
  right: 0%;
  width: 16%;
  height: 11%;
}
/* Ende Header */

/* Article */
article {
  padding: 0.5rem 0rem 0rem;
}
a u{
  color: #0974BB;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:719px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }

}

/* Ende Responsive */
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}
