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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;

    background-image: url('workshop.jpg');
    background-size: cover;           /* skaliert, füllt Fläche */
    background-position: center center; /* zentriert */
    background-repeat: no-repeat;
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    padding-bottom:5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

h1 {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: fadeIn 2s ease-in-out;
}

h2 {
    position: relative;
    left: -100%;
    opacity: 0;
    animation: fadeIn 2s ease-in-out;
    /* Wartezeit bevor Animation startet */
}

@keyframes slideIn {
    to {
        left: 0;
        opacity: 1;
    }
}

p {
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
    animation: fadeIn 3s ease-in-out;
}

p.impr{
    color:#333;
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: bold;
    
}

.progress-container {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 30px;
    animation: fadeIn 4s ease-in-out;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #CB0101;
    border-radius: 5px;
    animation: progress 5s linear infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

footer {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
    animation: fadeIn 6s ease-in-out;
}

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