/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: black; /* black background */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;  /* full screen height */
  text-align: center;
  position: relative;
      
}

/* Logo */
.logo {
  width: 300px;   /* adjust size as needed */
  margin-bottom: 20px;
}

/* Main heading */
h1 {
  font-size: 70px;
  color: #f4a300;  /* gold */
  margin-bottom: 15px;
}

/* Sub-heading */
h2 {
  font-size: 50px;
  color: #ddd;  /* light grey */
  font-weight: normal;
}

/* Optional tagline */
p {
  margin-top: 15px;
  font-size: 18px;
  color: #f4a300;
  font-style: italic;
}