* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url(images/fondoTrama.jpg);
  background-repeat: repeat;
  font-family: 'Lato', sans-serif;
}
  
  #pokeHeader {
    display: flex;
    justify-content:center;
    flex-direction:row;
    padding: 10px 16px;
    background: linear-gradient(90deg, rgba(72, 255, 231, 0.609) 0%, rgba(83, 223, 158, 0.719) 100%);
    background-size: auto;
    mix-blend-mode: normal;
  }

  #pokeLogo {
    width: 430px;
    height: 115px;
  }

  /* .content {
    padding: 16px;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .sticky + .content {
    padding-top: 102px;
  } */

  .barraNav {
    display: flex;
    justify-content: left; 
    margin-left: 65px;
  }

  .pokeButtonNav {
    width: 125px;
    height: 47px;
    border: 10px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    margin-right: 10px;

    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    background: #FFCC03;
  }

  .pokeButtonNav:hover {
    background:   #1E3565;
    transition: .5s;
    cursor: pointer;
  }
  

  #pokeSearch {
    display: flex; 
    margin-top: -47px;
    margin-left: 1200px;
  }

  .pokeSearchStyle {
    width: 240px;
    height: 38px;
    background: #FFFFFF;
    border: 2px solid #FFCC03;
    border-radius: 60px;
    font-size: 16px;
    text-align: center;
   
  
  }

  .pokeImageStyle {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid  rgba(72, 255, 231, 0.609);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }
  
   .pokeImageStyle:hover {
    background:   rgba(72, 255, 231, 0.609);
    opacity: 60%;
    transition: .5s;
    cursor: pointer;
  } 

  #pokePic1 {
    justify-content: center;
    width: 1400px;
    height: 230px;
    margin-top: 40px; 
    margin-left: 40px; 
    margin-right: 40px;
  }

  #pokePic2 {
    justify-content: left;
    width: 700px;
    height: 193px;
    margin-top: 40px; 
    margin-left: 40px; 
    margin-right: 40px;
  }

  #pokePic3 {
    justify-content: right;
    align-items:center;
    width: 700px;
    height: 193px;
    margin-top: -264px; 
    margin-left: 760px;  
  }

  .pokeElegir {    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 67px;
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    text-align: center;
    color: #FFFFFF;
    background: #FFCC03;
    border: 0px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  
  .pokeElegir:hover {
    background:   #1E3565;
    transition: .5s;
    cursor: pointer;
  }

  #elegirPokeBtn {
    width: 1404px;
    margin-left: 40px; 
  }

  #elegirPokeBtn2 { 
    width: 704px;
    margin-left: 40px; 
  }

  #elegirPokeBtn3 { 
    width: 704px;
    margin-left: 760px; 
  }


#homePage {
  display: block;
}

#secondPage {
  display: none;
}

  #contentOfCards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    margin: 20px;
    margin-top: 40px;
  }
   
  .pokeCardsStyle {
    width: 180px;
    height: 180px;

    background: #FFFFFF;
    border: 3px solid #F49321;
    border-radius: 30px;
    margin: 10px;
  }
    
  .pokeCardsStyle:hover {
    background: rgb(243, 200, 151);
    transition: .5s;
  
    -ms-transform: scale(1.06); /* IE 9 */
    -webkit-transform: scale(1.06); /* Safari 3-8 */
    transform: scale(1.06); 
    cursor: pointer;
  }

  .pokeCardsPic { 
    width: 100px;
    height: 100px; 
  } 
  
  .pokeCardsName {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;

    color: #F49321;
  }

  .pokeCardsLine {
    width: 140px;
    margin: 3px;
    margin-left: 17px;
    background: #F49321;
    border: 1px solid #F49321;
  }
  
  .pokeCardsNum {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 11px;
    line-height: 13px;

    color: #F49321;
  } 

  select {
    display: flex;
    width: 278px;
    height: 38px;
    margin: 10px;
    margin-top: 10px;
    margin-left: 20px; 
    cursor: pointer;
  
    background: #FFCC03;
    border: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;

    font-family: 'Lato', sans-serif;
    font-style: normal;
    /* font-weight: bold; */
    font-size: 20px;
    line-height: 24px;

    color: #FFFFFF;
  }

  option {
    display: flex;
    width: 221px;
    margin-top: 100px;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
  
    color: #FFFFFF;
  }

  #pokeFooter {
    display: flex;
    justify-content:center;
    flex-direction:row;
    height: 100px;
    margin-top: 40px;
    background: linear-gradient(90deg, rgba(72, 255, 231, 0.609) 0%, rgba(83, 223, 158, 0.719) 100%);
    background-size: auto;
    mix-blend-mode: normal;
  }


  /* RESPONSIVE para Móvil */
  @media (min-width: 320px) and (max-width: 767px) {
    #pokeHeader {
      width: 342px;
      height: 70px;   
  }

    #pokeLogo {
      display: flex;
      justify-content: center;
      width: 210px;
      height: 80px;
    }
    
    .pokeButtonNav {
      width: 125px;
      height: 18px;
      border: 10px;
      border-radius: 7px;
      margin-right: 10px;
      font-size: 10px;
      
  }





    #pokePic1 {
      justify-content: center;
      width: 354px;
      height: 80px;
      margin-top: 60px;
      margin-left: 7px;
    }

    .pokeImageStyle {
      border-top-right-radius: 20px;
      border-top-left-radius: 20px;
    }

    #elegirPokeBtn {
      width: 356px;
      margin-left: 7px;
    }

    .pokeElegir {
      height: 30px;
      font-size: 16px;
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 20px;
    }
 
    #pokePic2 {
      justify-content: center;
      width: 354px;
      height: 80px;
      margin-top: 15px;
      margin-left: 7px;
    }

    #pokePic3 {
      justify-content: center;
      width: 354px;
      height: 80px;
      margin-top: 15px;
      margin-left: 7px;
    }
      
    #elegirPokeBtn3 {
      width: 356px;
      margin-left: 7px;
    }
    


    #elegirPokeBtn2 {
      width: 356px;
      margin-left: 7px;
    }




    .pokeCardsName {
      font-size: 10px;
    }
    .pokeCardsLine {
    width: 45px;
    margin: auto;
   }
    .pokeCardsStyle {
    width: 90px;
    height: 90px;
    border: 2px solid #F49321;
    border-radius: 15px;
  }
 .pokeCardsPic {
    width: 50px;
    height: 50px;
  }
  .barraNav2 {
    display: flex;
    flex-direction: column;
  }

  #pokeFooter {
    height: 60px;
    margin-top: 30px;

  }
}

 
  













