/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f8fa;
    color: #333;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
  }
  
  ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    padding: 0;
  }
  
  ul li {
    background: #3498db;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  ul li:hover {
    background: #2980b9;
  }
  
  ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: transform 0.2s ease;
  }
  
  ul li a:hover {
    transform: scale(1.05);
    text-shadow: 0 0 5px rgba(255,255,255,0.7);
  }
  