/* Reset & base styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #0e0e0e;
    color: #f5c851; /* Gold tone to match the logo */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 1rem;
  }
  
  /* Container and layout */
  .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Logo styling */
  .logo {
    width: 600px;
    max-width: auto;
    margin-bottom: 30px;
  }
  
  /* Heading */
  h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  
  /* Tagline */
  .tagline {
    font-size: 1.4rem;
    color: #d1b25b; /* Slightly muted gold for contrast */
    max-width: 600px;
    line-height: 1.6;
  }
  