<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
/*
* CSS to style the page
*/
body {
/* Full black background */
background-color: #000000;
/* Ensure the content fills the entire viewport */
height: 100vh;
margin: 0;
/* Flexbox for centering */
display: flex;
justify-content: center; /* Horizontal centering */
align-items: center; /* Vertical centering */
/* Basic font styling */
font-family: Arial, sans-serif;
color: #ffffff; /* White text color */
}
h1 {
/* Styling for the main text */
font-size: 3em; /* Large text size */
text-align: center;
padding: 20px;
border: 2px solid #ffffff; /* Optional: adds a white border around the text */
letter-spacing: 5px;
}
</style>
</head>
<body>
<h1>Coming Soon</h1>
</body>
</html>