
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundlayout */
html, body {
    width: 100%;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
}

/* Zentrierung */
body {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.center-container {
    text-align: center;
    padding: 2rem;
}

/* Website-Name */
.site-name {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Mail-Link */
.email-link {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffffff;
}