<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guestlist India</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #ffffff; /* Change this hex code if you want a different background color */
}
img {
max-width: 400px; /* Adjust this number (e.g., 300px, 500px) to make your image smaller or bigger */
width: 90%;
height: auto;
}
</style>
</head>
<body>
<!-- This line pulls your image dynamically -->
<img src="logo.svg" alt="Logo">
</body>
</html>