<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Website</title>
<link rel="stylesheet" href="src/output.css">
<style>
.header-bg {
background-image: url();
background-size: cover;
background-position: center;
position: relative;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(7, 0, 23, 0.286);
}
</style>
</head>
<body class="relative">
<nav class="flex items-center absolute justify-between p-6 lg:px-8 w-full top-0 z-20 text-white">
<div class="w-[60%]">
<span class="font-bold text-4xl ">
Logo
</span>
</div>
<div class="w-[40%] justify-between flex text-xl">
<a href="#" class="hover:text-green-400 transition duration-150 ">Home</a>
<a href="#" class="hover:text-green-400 transition duration-150 ">Packages</a>
<a href="#" class="hover:text-green-400 transition duration-150 ">Community</a>
<a href="#" class="hover:text-green-400 transition duration-150 ">About</a>
</div>
</nav>
<header class="header-bg h-screen relative">
<div class="overlay"></div>
<div class="flex items-center justify-center h-full text-center text-white relative z-10">
<div>
<h1 class="text-4xl md:text-7xl font-bold mb-4">Explore Your Next Adventure</h1>
<p class="text-lg md:text-2xl">Find amazing destinations and create unforgettable memories.</p>
<a href="#" class="bg-white text-black px-6 py-3 rounded-full mt-6 inline-block hover:bg-green-400 transition duration-150 ">Discover More</a>
</div>
</div>
</header>
</body>
</html>