body {
    margin: 0;
    padding: 0;
    background-color: #c6f0c3; /* Game Boy green */
    font-family: monospace;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  h1 {
    background-color: #224422;
    color: #f0f0f0;
    padding: 10px 20px;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    border: 3px solid #000;
  }

  form {
    margin: 20px;
  }

  input[type="text"] {
    background-color: #e1f0e1;
    border: 2px solid #444;
    font-family: inherit;
    font-size: 16px;
    padding: 8px;
    width: 220px;
  }

  button {
    background-color: #444;
    color: white;
    border: none;
    padding: 8px 14px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
  }

  #pokemonTiedot {
    background-color: #fff;
    border: 3px solid #000;
    padding: 15px;
    width: 300px;
    text-align: center;
    margin-bottom: 30px;
  }

  #pokemonTiedot img {
    image-rendering: pixelated;
    width: 96px;
    height: 96px;
    margin-bottom: 10px;
  }

  #pokemonTiedot h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  #pokemonTiedot p {
    font-size: 14px;
    margin: 4px 0;
  }