 @font-face {
    font-family: "EuropeanTeletext"; 
    src: url("fonts/tele/EuropeanTeletext.ttf") format("truetype");
    /* or: */
    src: url("fonts/tele/EuropeanTeletextNuevo.ttf") format("opentype");
}

body {
  font-family: "EuropeanTeletext";
  background-color:#f4d368;
}  

h1 {
  font-size:20px;
}
 
 #search {
      width:50%;
      padding: 10px;
      margin-bottom: 10px;
      align-items:center;
      font-family: "EuropeanTeletext";
      border:2px dotted #727782;
    }

    #suggestions div {
      background: #f0f0f0;
      padding: 5px;
      cursor: pointer;
      font-family: "EuropeanTeletext";
    }

    #suggestions div:hover {
      background: #ddd;
    }

    #gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
      justify-content: center;   /* ← this is the key */
    }
    
    #gallery img {
      width: 200px;
      height: auto;
      object-fit: cover;
      border:2px dotted #727782;
      border-radius: 5px;
      background:white;
      margin:20px;
    }
    
.pokemon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.pokemon-card img {
  width: 120px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 10px;
}

.pokemon-card p {
  margin-top: 5px;  
  font-family: "EuropeanTeletext";
  font-size: 14px;
  text-align: center;
}
    
