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

/* Fullscreen Hintergrund */
body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    background: url("../img/impression-hohentauern.jpg") no-repeat center center/cover;
    color: white;
}

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

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

/* Logo */
.logo {
    width: 400px;
    max-width: 70%;
    margin-bottom: 30px;
}

/* Überschrift */
h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Text */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button */
.btn {
    display: inline-block;
    background: #0071c2;
    color: white;
    padding: 14px 28px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
	border:1px solid #fff;
}

.btn:hover {
    background: #005999;
    transform: scale(1.05);
}

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

    p {
        font-size: 1rem;
    }

    .logo {
        width: 180px;
    }
}