<!DOCTYPE html>
<html>
<head>
<title>Welcome to Bit Zen</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #6e8efb, #a777e3);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
}
.logo-container {
width: 200px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
}
.logo-container img {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<div class="logo-container">
<img src="images/logo.png" alt="Bit Zen Logo">
</div>
</body>
</html>