@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.5em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 450px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #00A264;
  background-color: #FFC942;
  overflow: hidden;
  padding: 0rem;
  text-align: center;
}

p {
  padding-bottom: 1rem;
}

hr {
  border: 0;
  border-bottom: 2px solid #00A264;
  margin-bottom: 1rem;
}

h1 {
  margin: 0rem 0rem 0rem;
  font-size: 1.692em;
  line-height: 1.3em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Ende Standard */

/* Header */
header {
  padding: 1rem 1rem 0rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
}

article > a {
  display: inline-block;
  margin: 0 1rem 0.5rem;
}

article aside p {
  padding-bottom: 0.3rem;
}

article aside {
  background: #00A264;
  color: #fff;
  padding: 0.8rem 1rem 0.5rem;
  margin-bottom: 1rem;
}

article p {
  padding: 0 1rem 1rem;
}

article > p:last-of-type {
  text-align: left;
  border-top: 5px solid #00A264;
}

article > p:last-of-type strong {
  display: inline-block;
  padding: 0 0.8rem 0.3rem 2.7rem;
  margin-left: -1rem;
  color: #fff;
  background: #00A264;
  border-bottom-right-radius: 0.8rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 1rem 1rem 0rem;
  background: #00A264;
  color: #fff;
}

footer a {
  color: #fff;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:450px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
  }

  body {
    font-size: 1em;
  }

  i br {
    display: none;
  }

}

/* Ende Responsive */
