  #info {
    background: var(--primary-color);
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
  }

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* Root variables for easy theme changes */
  :root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-color: #1b1b1b;
    --text-color: #212529;
    --border-radius: 8px;
  }

  /* Full-Page Setup */
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }

  /* Header */
  header {
    height: 50vh; /* Takes half of the viewport height */
    background: linear-gradient(135deg, #4A90E2, #9013FE);
    color: white;
    display: flex;
    align-items: center;
  }

  .header-left {
    width: 50%;
    color: white;
    display: inline;
    align-items: center;
    justify-content: left;
    text-align: left;
    font-size: 2rem;
  }

  .header-right {
    width: 50%;
    color: white;
    display: inline;
    align-items: center;
    justify-content: right;
    text-align: right;
    font-size: 1rem;
  }

  /* Main Content */
  main {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
  }

  
  body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Button Styles */
  .button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .button:hover {
    background: darkblue;
    transform: scale(1.5) rotate(15deg);
  }
  
  /* Card Styles */
  .card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 10px;
    }
  }
  