/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background: url('https://buuble.ai/buuble_by_markus_goffin.jpg') no-repeat center center fixed;
    background-size: cover; /* Sorgt dafür, dass das Bild den gesamten Hintergrund ausfüllt */
    text-align: center;
    margin: 0;
    padding: 0;
    color: white; /* Weißer Text für bessere Lesbarkeit auf dunklen Hintergründen */
}

/* Container */
.container {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.6); /* Dunkle Überlagerung für besseren Kontrast */
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

/* Logo */
.logo {
    font-size: 48px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

/* Suchfeld */
#searchInput {
    width: 60%;
    padding: 12px;
    font-size: 18px;
    border: 2px solid #ffcc00;
    border-radius: 10px;
    outline: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    color: black;
}

/* Button */
button {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #ffcc00;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

button:hover {
    background-color: #ff9900;
}

/* Antwortfeld */
#response {
    margin-top: 20px;
    padding: 15px;
    width: 70%;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: rgba(255, 204, 0, 0.8); /* Halbtransparente Hintergrundfarbe */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 10px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
}
footer a {
    color: #ffcc00;
}

h3 {
    color: #fff44f;
}