/* Basis-Stile */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Hintergrundbild */
.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Standardmäßig ausgeblendet */
}

/* Hintergrundvideo */
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Inhalt */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.search-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-form input {
    padding: 10px;
    font-size: 1.2rem;
    border: 2px solid #fff;
    border-radius: 25px 0 0 25px;
    outline: none;
    width: 300px;
}

.search-form button {
    padding: 10px 20px;
    font-size: 1.2rem;
    border: 2px solid #fff;
    border-radius: 0 25px 25px 0;
    background-color: deepskyblue;
    color: white;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: lightskyblue;
}

/* Bildschirmsteuerung */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .search-form input {
        width: 200px;
        font-size: 1rem;
    }

    .search-form button {
        font-size: 1rem;
    }
}

