@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: "Segoe UI", sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 600px;
    border: solid 2px #01448C;
    background: #01448C;
}
p {
    padding-bottom: 1rem;
}
h1,
h2,
h3 {
    margin: 0rem 0rem 0.7rem 25px;
    font-size: 1.712em;
    line-height: 1.1em;
}
a {
    color: #fff;
    text-decoration: none;
}
h1:before,
h2:before,
h3:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.2em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -25px;
}
.big {
    font-size: 1.188em;
}
article {
    padding: 0.7rem 1rem 0.3rem;
}
i {
    padding: 0 0.2rem;
}
/* Ende Article */
/* Footer */
footer {
    position: absolute;
    right: 1rem;
    bottom: 5rem;
}
/* Ende Footer */
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
/* Ende Standard */
/* Responsive */
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    article p:nth-of-type(1) br,
    article p:nth-of-type(2) br,
    h3 br {
        display: none;
    }
    p :is(span,a){
    	display: inline-block;
    }
}
/* Ende Responsive */