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

body {
    font-family: 'Manrope', sans-serif;
    height: 100vh;
    background-image: url("banner-baustelle.jpg"); /* Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay für bessere Lesbarkeit */
.overlay {
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Inhalt */
.content {
    max-width: 600px;
}

/* Logo */
.logo {
    max-width: 280px;
    width: 100%;
    margin-bottom: 10px;
}

/* Überschrift */
h1 {
    font-size: 2.35rem;
    color: #e63946;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Überschrift2 */
h2 {
    font-size: 1.95rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Text */
p {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
    font-size: 1.35rem;
    }

    p {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 160px;
        margin-bottom: 30px;
    }
}
