html, html * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
     font: 100% Times New Roman, "Times", serif;
    color: #3f0408;
    font-size: 100%;
}
.close {
    position: fixed;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid black;
}
.close:hover {
    opacity: 0.3;
}
.close:before, .close:after {
    position: absolute;
    left: 14px;
    top: 5px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #000;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}
.inhalt {
    margin: 100px auto 0 auto;
    max-width: 940px;
    padding: 10px
}
ul, ol {
    margin-left: 30px;
}
p {
    padding-bottom: 20px;
}
h1 {
    margin-bottom: 20px;
}