body {
    font-family: 'IM Fell English', serif;
    background-color: black;
    color: #f5deb3;
    text-align: center;
  }
  
  header {
    background-color: #3a2a10;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  
  h1 {
    font-size: 3rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #f5deb3;
    font-size: 1.5rem;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    color: #d4af37;
    text-shadow: 0px 0px 10px #d4af37;
  }
  
  section {
    margin: 40px auto;
    padding: 20px;
    background: rgba(58, 42, 16, 0.9);
    border-radius: 10px;
    width: 80%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  }
  
  input, select {
    padding: 10px;
    margin: 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
  }
  
  #character-list, #spell-list, #house-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 1);
  }
  