@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;700&display=swap');

body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Public Sans', sans-serif; /* Dein Wunsch-Font! */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container { text-align: center; border: 1px solid #333; padding: 40px; border-radius: 15px; }
h1 { color: #00ffcc; }
.btn { 
    display: inline-block; margin-top: 20px; padding: 10px 20px; 
    background: #00ffcc; color: black; text-decoration: none; border-radius: 5px; 
}