/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .heading {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.6;
  }
  