@charset "utf-8";

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    color: #000;
    font: 400 15px/1.5em 'Roboto', Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

header {
    padding: 1rem 1rem 0;
}

article {
    padding: 1rem 3rem;
}

article p {
    margin: 0 0 1rem;
}

:is(article,footer) span {
    display: inline-block;
}

:is(header,article,footer) :is(h1,h2) {
    color: #003769;
    line-height: 120%;    
    font-weight: 700;
}

article h1 {
    font-size: 1.75rem;
    margin: 0.75rem 0 .5rem;
}

article #stoerer {
    min-width: 100px;
	max-width: 100px;
    height: auto;
    margin: 2rem 0 0;
}

article .flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 1rem;
    margin: 3rem 0 0;
	
}

:is(header,article,footer) h2 {
    font-size: 1rem;
}

article ul {
    margin: .5rem 0 2rem 1.6rem;
    list-style: none;
}

article ul li:before {
    content: "\2022";
    float: left;        
    margin: 0 0 0 -25px;
    font-size: 1.125rem;
}

:is(a:link,a:visited,a:hover,a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap; 
    font-weight: bold;  
}

footer {
    padding: 0 3rem 2rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article :is(p,ul,h1) {
        hyphens: auto;
    }
}

@media only screen and (max-width: 31.25rem) {

    article {
        padding: 1rem 1rem 0;
    }

    article .flex {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0 0;
    }

    article .flex #stoerer {
        margin: 0 auto 1rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}