* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.search-form {
    display: inline-block;
    width: 60%;
    max-width: 600px;
}

.search-input {
    width: 80%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    font-size: 1.2em;
    outline: none;
}

.search-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background-color: #0078d7;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 10px;
}

.search-btn:hover {
    background-color: #0053a6;
}

footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #ccc;
}
