/* Dark Mode Styling */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: #121212;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }
  
  header {
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 3rem;
    color: #50fa7b;
    margin: 0;
  }
  
  header p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #bd93f9;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 5px;
    margin: 10px 0;
    padding: 15px;
    text-align: left;
    color: #bbb;
  }
  
  a {
    color: #50fa7b;
    text-decoration: none;
    font-weight: bold;
  }
  
  a:hover {
    color: #bd93f9;
  }
  
  button {
    background-color: #ff5555;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #ff79c6;
  }
  
  footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #6272a4;
  }
  