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

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

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

html {
  min-height: 100%;
}

body {
  color: #fff;
  font-family: 'Saira', sans-serif;
  font-size: 0.8125em;
  line-height: 1.429em;
}

#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #555555;
  background-color: #005278;
  overflow: hidden;
  padding: 0rem;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0rem 0rem 2rem;
  font-size: 1.375em;
  line-height: 1.1em;
  color: #D2D700;
  text-align: center;
  font-weight: 600;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 1.3rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
}

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

/* Ende Standard */

/* Header */
header {
  padding: 0;
  position: relative;
}

header a {
  position: absolute;
  bottom: 12%;
  right: 2.5%;
  width: 27%;
  height: 20%;
  display: block;
  z-index: 9999;
}

/* Ende Header */

/* Article */
article {
  padding: 2.75rem 0 3rem;
  max-width: 585px;
  margin: 0 auto;
}

article p:nth-of-type(1) {
  text-align: justify;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0.5rem 0rem 2rem;
  background-color: #C4C9D1;
  color: #005278;
  font-weight: 500;
  line-height: 1.2em;
}

footer section {
  max-width: 585px;
  margin: 0 auto;
}

footer a {
  color: #005278;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
  }

  p {
    text-align: left;
  }

  i br {
    display: none;
  }
}

@media only screen and (max-width:585px) {

  article,
  footer {
    padding: 1rem;
    max-width: 585px;
    margin: 0 auto;
  }

  article p:nth-of-type(1) {
    text-align: left;
  }
}

/* Ende Responsive hieu */