/* Updated body styling for a clean background and centered content */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #e8f0fe; /* Soft blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Enhancing container styling */
  .container {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
  }
  
  /* Updated heading styling */
  h1 {
    color: #4a5568;
    font-size: 28px;
    text-align: center;
  }
  
  /* Styling the list items */
  ul {
    padding: 0;
    list-style: none;
  }
  
  li {
    margin: 12px 0;
    font-size: 18px;
    color: #333;
  }
  
  li code {
    background-color: #f3f4f6;
    padding: 2px 4px;
    border-radius: 4px;
  }
  
  /* Adding hover effect to list items */
  li:hover {
    background-color: #f9fafb;
    border-left: 4px solid #60a5fa;
    padding-left: 10px;
  }
  