body {
    background-color: #020140;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: sans-serif;
  }
  #content-container {
    display: flex;
    justify-content: center;  
    width: 400px;
    background-color: white;
    border: 1px solid transparent;
    flex-direction: column;
    border-radius: 14px;
    box-shadow: 10px 10px silver;
    align-items: center;
  }
  .title {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 25px 0;
  }
  .title h1{
    margin: 0 30px;
  }
  .search-container {
    background-color: white;
    width: 91%;
    height: 100px;
  }
  .pokemon-container {
    background-color: white;
    min-height: 290px;
    width: 91%; 
  }
  .stats-container {
    color: white;
  }
  .stat-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
  }
  .stat-row:last-child {
    margin-bottom: 10px;
  }
  .left-stat, .right-stat {
    background-color: #A020F0;  
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .left-stat {
    width: 240px;
  }
  .right-stat {
    width: 120px;
  }
  .header {
    background-color: #020140;
  }
  #search-input {
    width: 200px;
    height: 20px;
    font-size: 16px;
    padding-left: 10px;
  }
  #search-button {
    width: 80px;
    border: 1px solid transparent;
    border-radius: 30px;
    height: 28px;
    background-color: #A020F0;
    color: white;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    padding: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .input-title {
    color: #020140;
    font-size: 18px;
    margin: 10px 0;
  }
  #pokemon-name, #pokemon-id {
    font-size: 22px;
    color: #020140;
  }
  #pokemon-id {
    margin-left: 6px;
  }
  .pokemon-title-row {
    display: flex;
  }
  #img-container {
    margin: 10px 0;
  }
  #img-container img {
    height: 155px;
    width: 155px;   
  }
  .pokemon-description-row {
    display: flex;
    color: #020140;
    margin: 6px 0 0 0;
  }
  #height {
    margin-left: 14px;
  }
  #types {
    display: flex;
    color: black;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .type {
    padding: 10px;  
    margin: 0 10px 10px 0;
    font-size: 13px;
    font-weight: 560;
    border: 1px solid transparent;
    border-radius: 10px;
    width: 70px;
  }
  .electric {
    background-color: #ffcc00;
  }
  .fire {
    background-color: #ff3300;
    color: white;
  }
  .flying {
    background-color: #6699ff;
    color: white;  
  }
  .water {
    background-color: #1a75ff;
    color: white;
  }
  .ice {
    background-color: #66e0ff;
  }
  .grass {
    background-color: #00ffbf;
  }
  .ground {
    background-color: #d2a679;
  }
  .psychic {
    background-color: #cc3399;
    color: white;
  }
  .poison {
    background-color: #009999;
    color: white;
  }
  .rock {
    background-color: gray;
    color: white;
  }
  .normal {
    background-color: silver;

  }
  .fairy {
    background-color: #ff00ff;
    color: white;
  }
  .fighting {
    background-color: #999966;
    color: white;
  }
  .dark {
    background-color: #333399;
    color: white;
  }
  .dragon {
    background-color: #b30000;
    color: white;
  }
  .steel {
    background-color: silver;
  }
  .bug {
    background-color: #669999;
    color: white;
  }
  .ghost {
    background-color: antiquewhite;
  }
  .no-name-found {    
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;    
  }
  @media screen and (max-width: 460px){
    #content-container {
        width: 340px;
        box-shadow: none;
    }
    .left-stat {
        width: 200px;
    }
    .right-stat {
      width: 100px;
    }
    .title h1 {
      font-size: 26px;
    }
    .input-title {
      font-size: 16px;
      margin-bottom: 24px;
    }
    #search-button {
      text-align: center;
      font-size: 14px;
    }
  }