/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('background.gif') no-repeat center center fixed;
    background-size: cover; /* Das GIF füllt den gesamten Hintergrund aus */
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

/* Blur-Effekt und Overlay */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    z-index: 10;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 3s ease forwards;
    filter: blur(10px); /* Anfangs unscharf */
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    opacity: 0;
    animation: textFadeIn 3s ease forwards;
}

p {
    font-size: 1.2em;
    height: 1.2em;
    animation: textFadeIn 3s ease forwards;
    animation-delay: 1s;
    white-space: nowrap;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

/* Animationen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
