/* Allgemeine Stile für die Seite */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Hintergrund mit Wallpaper */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hintergrund.jpg'); /* Ersetze mit deinem Wallpaper-Pfad */
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

/* Animiertes Fenster */
.contact-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background: rgba(255, 255, 255, 0.9); /* 10% Transparenz */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}


/* Inhalt des Fensters */
.window-content h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
}

.window-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
