.bild-container {
    position: relative;
    text-align: center;
    background-image: url('sunset-synthwave.jpg'); /* https://www.uhdpaper.com/2023/06/sunset-synthwave-retrowave-palm-4k-7051k.html?m=0 */
    background-size: cover; /* Bild wird proportioniert dass es die gesamte Fläche abdeckt */
    background-position: center;
    background-repeat: no-repeat; /* Bild wird nicht wiederholt */
    min-height: 100vh; /* Mindesthöhe des Containers auf 100% der sichtbaren Höhe des Viewports setzen */
    margin: -8px;
    
}

.seal {
    width: 800px;
    margin-top: 50px;
    height: auto;
    border-radius: 25px;
}

.text {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: bold;
    font-family: 'Bungee Shade', sans-serif;
}

#waiting {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

#clock {
    margin-top: 630px;
}