/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  .section {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  h2 {
    color: #555;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .pokemons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .pokemon {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    width: 150px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
  }
  
  .pokemon:hover {
    transform: scale(1.05);
  }
  
  .pokemon img {
    width: 100px;
    height: 100px;
  }
  
  .attributes {
    margin-top: 10px;
    text-align: left;
    font-size: 14px;
    color: #666;
    background-color: #e9e9e9;
    padding: 5px;
    border-radius: 5px;
  }
  