/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
body {
    min-height: 100vh;
    background-image: url('img/hm-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Vignette Overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        transparent 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none; /* damit Klicks durchgehen */
}
