style2
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais para o corpo da página */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Cabeçalho */
header {
    background-color: #3e3e3e;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
}

/* Estilo para a seção de detalhes do Pokémon */
.pokemon-details {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Estilo da imagem do Pokémon */
.pokemon-details img {
    display: block;
    margin: 0 auto;
    width: 200px; /* Ajuste o tamanho da imagem conforme necessário */
    border-radius: 8px;
}

/* Estilo para os títulos das seções */
.pokemon-details h2 {
    font-size: 1.5em;
    margin-top: 20px;
    color: #333;
}

/* Estilo para a tabela de status */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

td {
    background-color: #fafafa;
}

/* Botão de voltar */
button {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4cae4c;
}

button:focus {
    outline: none;
}
