20 lines
301 B
CSS
20 lines
301 B
CSS
/* === Global Reset === */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Georgia', serif;
|
|
background-color: #1f1414;
|
|
color: #f5f5f5;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* === Container für zentralen Content === */
|
|
.container {
|
|
max-width: 1600px;
|
|
width: 90%;
|
|
margin: 0 auto;
|
|
} |