
*{
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
    background-image: linear-gradient(to right, #2980b9, #6dd5fa, #385871);
  }
  
  /* h1 {
    text-align: center;
    margin-top: 50px;
    color: #383838;
    font-family: 'Roboto', sans-serif;
  } */
  h1 {
    margin-top: 50px;
    color: #383838;

    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 4px blue, 0 0 7px darkblue;
    font-size: 44px;
  }
  
  
  .poke_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .pokemon {
    margin: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    background-color: white;
    max-width: 200px;
  }
  
  .pokemon:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  .img-container {
    display: flex;
    justify-content: center;
  }
  
  .img-container img {
    width: 100%;
    height: auto;
  }
  
  .info {
    text-align: center;
    padding: 10px 15px;
  }
  
  .number {
    font-size: 14px;
    color: #9c9c9c;
    font-family: 'Roboto', sans-serif;
  }
  
  .name {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
  }
  
  .type {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #383838;
    font-family: 'Roboto', sans-serif;
  }
  
  .type span {
    font-weight: bold;
    text-transform: capitalize;
  }
  