<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: url("background.jpg") no-repeat center center fixed;
background-size: cover;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
}
h1 {
font-size: clamp(2.5rem, 8vw, 5rem);
color: gold;
text-shadow: 3px 3px 6px black;
margin-bottom: 30px;
}
.search-box {
display: flex;
justify-content: center;
align-items: center;
max-width: 700px;
width: 90%;
margin: auto;
background: rgba(255,255,255,0.95);
border-radius: 50px;
padding: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.search-box input {
flex: 1;
border: none;
outline: none;
font-size: 18px;
padding: 15px 20px;
border-radius: 50px;
}
.search-box button {
border: none;
background: #4285F4;
color: white;
padding: 15px 30px;
border-radius: 50px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.search-box button:hover {
background: #3367d6;
}
</style>