body {
    font-family: Arial, sans-serif;
    background-color: #f0f4fc;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  header, footer {
    background-color: #4a6db3;
    color: white;
    padding: 1rem;
    text-align: center;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  nav a:hover{
    color: #89acf2;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
  }
  
  main {
    padding: 2rem;
  }
  
  h2 {
    text-align: center;
    color: #4a6db3;
  }

  h1 {
    text-align: center;
    color: #f0f4fc;
  }
  
  .personagens-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
    list-style: none;
  }
  
  .personagens-lista li {
    text-align: center;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    margin-top: 0.5rem;
  }
  