@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Viga&display=swap');

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #231f20;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.375em;

}

#wrapper {
  position: relative;
  max-width: 625px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #555555;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
  background: #fff url("bgt.jpg") no-repeat 0 0;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0.3125rem 0 1rem;
  font-size: 1.625em;
  line-height: 1.125em;
  font-family: 'Viga', sans-serif;
  font-weight: normal;
  color: #bb141a;
}

h1 small {
  font-size: 0.75em;
  display: block;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.0625rem;
  color: #bb141a;
}

a {
  color: #231f20;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0 0 1rem 0;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 1rem;
}

ul li:before {
  content: "\2BC8";
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  position: relative;
  float: left;
  top: 0.1875rem;
  margin-left: -1rem;
  color: #D2D2D4;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

/* Ende Standard */

/* Header */
header {
  padding: 1rem 2.5rem 0;
  text-align: right;
}

/* Ende Header */

/* Article */
article {
  padding: 1rem 2.5rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0.75rem 1.5rem;
  text-align: right;
  font-size: 1.25em;
  line-height: 1.25;
  background: url("bgf.jpg") no-repeat bottom left;
  color: #fff;
}

footer a {
  color: #fff;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:623px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.3em;
  }

  p {
    text-align: left;
  }

  header {
    padding: 1rem 1rem 0;
    text-align: right;
  }

  article {
    padding: 1rem 1rem;
  }

  i br {
    display: none;
  }
}

/* Ende Responsive hieu */