body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Desktop.jpg'); 
    background-size: cover;
    background-position: center;
}

#content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); 
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 3em;
    margin: 0;
}

p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}

.search-container {
    display: flex;
    justify-content: center;
}

.search-container input[type="text"] {
    padding: 10px;
    font-size: 1em;
    width: 300px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: 0;
}

.search-container button {
    padding: 10px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    background-color: #5cb85c;
    color: white;
    border-radius: 0 5px 5px 0;
    transition: 0.5s;
}
.search-container button:hover{
    opacity: 0.8;
}
@media (max-width: 1024px) {
    #background {
        background-image: url('Tablet.jpg');
    }
}

@media (max-width: 600px) {
    #background {
        background-image: url('mobile.jpg'); 
    }
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1.2em;
    }

    .search-container input[type="text"] {
        width: 200px;
    }
}
