#weatherContainer {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background-image: url('https://umzugsmitteilungen.de/wp-content/uploads/2024/02/Wolken.png');
    background-position: center; /* Bild zentriert */
    background-size: cover; /* Bild bedeckt den gesamten Container */
    background-repeat: no-repeat; /* Verhindert die Wiederholung des Hintergrundbildes */
    color: #000000;
    text-shadow: 1px 1px 0px #000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
}

#weather {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}