:root {
    color-scheme: dark;
    /* Hint for form controls, scrollbars, etc. */
    --bg: #000;
    --fg: #fff;
}

/* A tiny, modern reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
}

body {
    min-height: 100svh;
    /* Safe against mobile UI chrome */
    background: var(--bg);
    color: var(--fg);
    display: grid;
    place-items: center;
    /* Perfect center on all screens */
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    padding: 1rem;
    /* Keeps edges breathable on phones */
}

main {
    width: 100%;
}

.brand-title {
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-size: clamp(2rem, 8vw, 6rem);
    word-wrap: anywhere;
}

/* Typography for the main title using Bodoni Moda */
.brand-title {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
}

/* Email/link styling */
.contact {
    margin-top: 0.75rem;
}

.contact-email {
    color: inherit;
    /* bleibt weiss auf schwarzem Hintergrund */
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 1.5rem);
    opacity: 0.9;
}

.contact-email:hover,
.contact-email:focus {
    text-decoration: underline;
    opacity: 1;
}

.contact-email:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}