/* Grundeinstellungen */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d5d5d5;
    color: #ffffff;
}

/* Hintergrundbild */

.hero {
    width: 100%;
    min-height: 100vh;
    background-image: url("blickwinkel_bg_5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* leichte Abdunklung für bessere Lesbarkeit */

.overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.contact p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}