ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333333;
    display: flex;
  }
  
  ul li a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul li a:hover {
    background-color: #111111;
  }
  nav {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center;     /* Centers items vertically */
    background-color: #333;  /* Example background */
  }
  
  nav a {
    padding: 14px 20px;
    text-decoration: none;
    color: white;
  }
  .hero {
    padding: 80px 0; /* Creates vertical space above and below the content */
    background-color: #ffffff; /* Or whatever background color is in your image */
  }
  
  .hero-container {
    display: flex;
    align-items: center;    /* Keeps text and image vertically centered */
    max-width: 1100px;      /* Prevents the content from hitting the screen edges */
    margin: 0 auto;         /* Centers the whole container on the page */
    gap: 50px;              /* Adds breathing room between the text and image */
  }
  
  .hero-content {
    flex: 1;                /* Makes the text column take up half the space */
  }
  
  .hero-image {
    flex: 1;                /* Makes the image column take up the other half */
  }
  
  .hero-image img {
    width: 100%;            /* Ensures the image doesn't overflow its box */
    height: auto;
  }
  @media (max-width: 768px) {
    .hero-container {
      flex-direction: column; /* Stacks text on top of the image */
      text-align: center;     /* Centers the text for mobile users */
    }
  }
  body {
    background-color: black;
    color: white;
    font-family: "Times New Roman", serif;
    display: flex;
    justify-content: center;
  }
  
  .app-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
  }
  
  .start-btn {
    background-color: #0026ca;
    color: white;
    padding: 15px 80px;
    border-radius: 12px;
    font-size: 24px;
    border: none;
    width: 100%;
    margin: 20px 0;
  }
  
  .nav-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
  }
  /* Dark Theme Overrides */
body {
    background-color: #000 !important;
    color: #fff !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Match the Elegant Font in the Image */
  .serif-text {
    font-family: 'Georgia', serif;
  }
  
  /* Styling the "Dashed" look */
  .dashes {
    font-size: 3rem;
    letter-spacing: 15px;
    font-weight: bold;
  }
  
  .dashes-small {
    font-size: 2rem;
    letter-spacing: 10px;
  }
  
  /* Customize Bootstrap's Blue to match the App's Blue */
  .btn-primary {
    background-color: #0022cc !important;
    border: none !important;
    font-family: 'Georgia', serif;
  }
  
  /* Nav Link adjustments */
  .nav-link {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
  }
  
*{
        font-family: 'Google Sans Flex', sans-serif;
}