<!DOCTYPE html>
<html lang="en">

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Landing Page <title>Landing Page</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
color: white;
display: flex;
flex-direction: column; /* Arrange items in a column */
justify-content: flex-end; /* Align items to the bottom */
align-items: center; /* Center align the items */
}

.background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://4kwallpapers.com/images/walls/thumbs_2t/16935.png'); /* Replace with your photo URL */
background-size: cover;
background-position: center;
z-index: -1;
}

.text {
font-size: 3em;
text-align: center;
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
padding: 20px;
border-radius: 10px;
margin-bottom: 10px; /* Space from the "Thank you" text */
}

.thank-you {
font-size: 2em; /* Slightly smaller text for "Thank you" */
text-align: center;
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
padding: 10px;
border-radius: 10px;
margin-bottom: 30px; /* Space from the bottom of the page */
}
</style>


<div class="background"></div>
<div class="text">Hacked By:- Aads
</div>
<div class="thank-you">Happy Diwali Guys</div>