/* Grundlayout */

* {
  box-sizing: border-box;
  }

body {
margin: 0;
min-height: 100vh;

```
background: #0d0d0d;
color: #ff9800;

font-family: system-ui, -apple-system, BlinkMacSystemFont,
             "Segoe UI", Roboto, sans-serif;

display: flex;
flex-direction: column;
```

}

/* Hauptinhalt */
.container {
flex: 1;

```
max-width: 800px;
width: 100%;

margin: 0 auto;
padding: 4rem 1.5rem;

text-align: center;
```

}

h1 {
margin-bottom: 2rem;
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 700;
color: #ff9800;
}

/* Download-Button */
.download-button {
display: inline-block;

```
margin-bottom: 2rem;
padding: 1rem 2rem;

background: #ff9800;
color: #111;

text-decoration: none;
font-weight: 700;
border-radius: 10px;

transition: all 0.2s ease;
```

}

.download-button:hover {
background: #ffb74d;
transform: translateY(-2px);
}

.download-button:active {
transform: translateY(0);
}

/* Links */
a {
color: #ffb74d;
}

a:hover {
color: #ffd180;
}

/* Beschreibung */
p {
line-height: 1.6;
color: #000000;
}

/* Footer */
footer {
padding: 1rem;
text-align: center;

```
border-top: 1px solid #333;
background: #111;
```

}

footer a {
text-decoration: none;
}

footer span {
margin: 0 0.5rem;
color: #666;
}
