/* styles.css */
body {
    font-family: 'Press Start 2P', cursive; /* Fuente estilo Pokémon */
    background-color: #ffcb05; /* Amarillo Pokémon */
    color: #2a75bb; /* Azul Pokémon */
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    color: #c82333; /* Rojo Pokémon */
    text-shadow: 2px 2px #000;
}

select {
    padding: 10px;
    font-size: 1.2em;
    border: 3px solid #2a75bb;
    border-radius: 10px;
    background-color: #fff;
    color: #2a75bb;
    cursor: pointer;
}

input[type="submit"] {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #c82333; /* Rojo Pokémon */
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #a71d2a; /* Rojo más oscuro al hacer hover */
}