@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em Calibri, sans-serif;
    line-height: 1.3;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 2.5rem 3.5rem;
    text-align: left;
}

a {
    color: #0000FF;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
    text-align: justify;
}

h1 {
    margin: 0rem 0rem 2rem;
    font-size: 1.85em;
    line-height: 1.1;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-decoration: underline;
    font-weight: normal;
}

h3 {
    font-size: 1.55em;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #E1B616;
    letter-spacing: 3px;
    float: left;
}

h4 {
    font-size: 1.67em;
    line-height: 1.1;
    margin: 1rem 0 2rem;
}

ul {
    padding: 0rem 0rem 1.2rem 1.5rem;
    list-style: none;
}

li {
    padding-left: 1.5rem;
}

li:before {
    content: "\2010";
    display: block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    top: -2px;
    margin-left: -1.5rem;
}

i {
    font-style: normal;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Header */
header {
    padding: 0rem 0rem 1rem;
}

header a img {
    float: right;
    margin-right: -2rem;
}

/* Ende Header */
/* Article */
article {
    padding: 0rem;
}

/* Ende Article */
/* Footer */
footer {
    padding: 1rem 0 0;
}

/* Ende Footer */
/* Responsive */
@media only screen and (max-width: 749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p {
        text-align: left;
    }

    i br {
        display: none;
    }

    header a img {
        margin-right: 0;
    }
}

@media only screen and (max-width: 400px) {
    body {
        font-size: 0.938em;
    }

    ul {
        padding-left: 0.6rem;
    }

    li {
        padding-left: 1rem;
    }

    li:before {
        margin-left: -1rem;
    }

    header a img {
        float: none;
    }

    h3 {
        float: none;
        margin-top: 1rem;
    }
}

/* Ende Responsive */
/* THANG DEVELOPER */