html{
  height: 100%;
  background-color: rgb(53, 101, 174);
}

::-webkit-scrollbar {
  width: 20px;
  background-color: white;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: rgb(255, 203, 5);
  border-radius: 0;
}

.hiddenScrollbar {
  overflow: hidden;
}

header {
  display: flex;
  justify-content: center;
  height: 100px;
  background-color: rgb(213, 59, 71);
}

.headerContent{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1600px;
}

.headerImg {
  position: relative;
  left: 40px;
  width: 180px;
}

.headerImgResponsive {
  width: 55px;
  display: none;
}

.imgArea {
  display: flex;
  align-items: center;
  gap: 10px;
}

.imgArea h1 {
  font-size: 20px;
}

.inputArea {
  display: flex;
  gap: 0;
  padding-right: 20px;
}

.inputArea input {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0 !important;
}

.inputArea button {
  width: 100px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: rgb(43, 113, 184) !important;
}

main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: rgb(53, 101, 174);
  height: 100%;
  margin: 0;
}

.content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1800px;
  height: 100%;
  padding-left: 300px;
  padding-right: 300px;
  background-color: rgb(53, 101, 174);
}

.poke {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 200px;
  height: 400px;
  background-color: rgb(183, 183, 183);
  margin: 10px;
  border: 2px solid black;
  border-radius: 20px;
  background-color: rgb(0, 128, 0);
}

.poke:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.pokeTop {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  padding-top: 20px;
}

.pokeTop h2 {
  font-size: 20px;
  color: black;
}

.pokeName {
  font-size: 20px;
  text-align: center;
}

.pokeImg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 120px;
  margin: 20px;
  margin-bottom: 5px;
  border: 2px solid black;
  border-radius: 20px;
  background-color: rgb(3, 154, 3);
}

.pokeImg img {
  width: 120px;
  height: 120px;
}

.pokeImg img:hover {
  transform: scale(1.05);
}

.pokeAbHeader {
  text-align: center;
  color: black;
}

.pokeAbility {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

.pokeAb {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 25px;
  background-color: rgb(3, 154, 3);
  border-radius: 20px;
}

.pokeAb h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  width: 400px;
  margin-block-start: 0;
  margin-block-end: 0;
}

.pokeTypeContent {
  margin: 20px;
  margin-left: 20px;
  gap: 30px;
}

.pokeType {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 150px;
  height: 35px;
  border-radius: 20px;
  background-color: rgb(3, 154, 3);
}

.pokeType h2 {
  font-size: 16px;
  margin-block-start: 0;
  margin-block-end: 0;
}

.pokeLoadMore {
  position: fixed;
  bottom: 10px;
  left: 50%;
}

.pokeButton {
  width: 65px;
  height: 65px;
  margin-top: 10px;
  background-color: rgb(213, 59, 71) !important ;
  border: 2px solid black !important;
  border-radius: 500px !important;
  opacity: 0.6;
}

.loadButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
}

.loadButton span{
  position: absolute;
  top: -15px;
  left: 12px;
  font-size: 54px !important;
  color: white;
}

.reloadButton {
  background-color: rgb(4, 139, 201) !important;
}

.pokeButton:hover {
  opacity: 1;
}

@media (max-width: 1500px) {
.content{
  padding-left: 50px;
  padding-right: 50px;
}
}
@media (max-width: 500px) {
  .content{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

}

@media (max-width: 600px) {
  .header {
    justify-content: space-around;
    gap: 0;
  }

  .headerImg {
    display: none;
  }

  .headerImgResponsive {
    display: block;
    position: relative;
    left: 20px;
  }

  .inputField {
    width: 200px !important;
  }

  .searchButton {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 70px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 450px) {
  .inputField {
    width: 130px !important;
  }
}

@media (max-width: 350px) {
  .inputField {
    width: 100px !important;
  }
}
