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

body {
    font-family: 'Georgia', serif;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('pictures/blumen1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

.card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: normal;
}

.content {
    margin-bottom: 30px;
}

.main-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #555;
}

hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 30px 0;
}

.secondary-info {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #666;
}

.secondary-info a {
    color: #7a8b8b;
    text-decoration: none;
    border-bottom: 1px solid #7a8b8b;
    transition: color 0.3s ease;
}

.secondary-info a:hover {
    color: #4a5a5a;
}

footer {
    font-size: 0.9rem;
    color: #777;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

footer h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #4a4a4a;
    font-weight: normal;
    text-align: center;
}

address {
    font-style: normal;
    line-height: 1.8;
    text-align: center;
}

footer a {
    color: #777;
    text-decoration: none;
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    h1 {
        font-size: 1.5rem;
    }
    .main-text {
        font-size: 1.1rem;
    }
}
