/* Custom styles for centering and additional styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Light gray background */
  }
  
  .container {
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Dark gray text */
  }
  
  p {
    font-size: 1.2rem;
    color: #555; /* Medium gray text */
    margin-top: 10px;
  }