ol.aufzaehlung {
    counter-reset:li; /* Initiate a counter */
    margin-top: 2.5em; /*Abstand nach oben*/
    margin-left:2em; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ol.aufzaehlung > li > ul {
	margin: 0 0 0 20px;
}
ol.aufzaehlung > li {
    position:relative; /* Create a positioning context */
    margin:0 0 8px 4em; /* Give each list item a left margin to make room for the numbers */
    padding:9px 0.1em; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */
}
ol.aufzaehlung > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:0;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
	/*Größe und Position der Zahlen beeinflussen:*/
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-style: italic;
    font-weight: bold;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    color:#fff;
    background:#123c62;
    border-radius:50%;
    text-align:center;
}
div.withpicture {
    background:  url(https://www.mitnutzungsportal.bremen.de/sixcms/media.php/25/Blase.png);
    position: relative;
    text-align: center;
    margin: 24px auto 24px auto;
    background-size: 550px 100px;
    width: 550px;
    height: 100px;
    background-repeat: no-repeat;
   }
p.insidepicture {
    width: 500px;
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
   }