/* 1. allgemein body und Schriftgrößen */
html, body, div, span, img,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
ol, ul, li, table, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    vertical-align: top;
}

html {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: inherit;
}

body {
	margin: 0px auto; 
	max-width: 100%;
	font-family: sans-serif;
	color: #000000;  
	background-color: #ffffff;
	text-align: center;
}

.inhalt {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

.flexbild {
    max-width: 100%;
}

.nur-breit {
	display: block;
}

.nur-schmal {
	display: none;
}

@media only screen and (max-width: 1280px) {
	.nur-breit {
		display: none;
	}

	.nur-schmal {
		display: block;
	}
	
}