@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #231F20;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 460px;
  margin: 1rem auto;
  border: solid 1px #514689;
  background-color: #fff;
  overflow: hidden;
  padding: 0.75rem;
}

p {
  margin-bottom: 0.5rem;
}

h1 {
  margin: 0 -0.75rem 0.125rem;
  font-size: 1.692em;
  line-height: 1.1em;
  padding: 0.15rem 0.75rem;
  background-color: #CCCCCC;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}

a {
  color: #231F20;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

ul {
  margin: 0;
  padding: 0 0 0.5rem 0;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 0.8rem;
}

ul li:before {
  content: "-";
  display: inline-block;
  font-size: 1.5em;
  position: relative;
  float: left;
  top: -2px;
  margin-left: -0.8rem;
}

ul+p {
  margin-right: 1rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

/* Ende Standard */

/* Header */
header {
  padding: 0;
}

/* Ende Header */

/* Article */
article {
  padding: 0;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

footer p {
  margin-bottom: 0;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:459px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0.625rem;
  }

  h1 br {
    display: none;
  }

  ul+p {
    margin-right: 0;
  }

  footer {
    display: block;
  }

  footer p {
    margin-top: 1rem;
  }

  span {
    display: inline-block;
  }

  p {
    text-align: left;
  }

}

/* Ende Responsive */