@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  background: rgb(237, 85, 100);
  overflow-x: hidden;
}
body nav {
  height: 100px;
  width: 100vw;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  background: rgb(214, 77, 90);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
}
body nav .search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
body nav .search #search {
  border: none;
  outline: none;
  height: 35px;
  width: 300px;
  min-width: 150px;
  border-radius: 30px;
  padding-left: 1rem;
}
body main .cardsContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding-top: 2rem;
  gap: 2rem;
  padding-top: 160px;
}
body main .cardsContainer .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  border-radius: 20px;
  animation: appearCard linear;
  animation-timeline: view();
  animation-range: entry 0;
}
body main .cardsContainer .card .info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 70px;
  padding: 0.6rem;
  border-radius: 20px 20px 0px 0px;
}
body main .cardsContainer .card .info .id, body main .cardsContainer .card .info .name {
  font-family: "Pixelify Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 1000;
  color: #e6e9ed;
  text-transform: uppercase;
  text-align: center;
}
body main .cardsContainer .card .photo {
  height: 250px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
body main .cardsContainer .card .photo .photoBg {
  position: absolute;
  width: 100%;
  height: 100%;
}
body main .cardsContainer .card .photo .photoSprite {
  visibility: visible;
  width: 200px;
  height: 200px;
  position: absolute;
  transition: 500ms;
}
body main .cardsContainer .card .types {
  display: flex;
  justify-content: center;
  gap: 0.7;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0px 0px 20px 20px;
  padding: 0.6rem;
  gap: 2rem;
}
body main .cardsContainer .card .types .type {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: 1s;
}
body main .cardsContainer .card .types .type .typeIcon {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.2rem;
  gap: 0.2rem;
  transition: 500ms;
  position: relative;
}
body main .cardsContainer .card .types .type .typeIcon img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 1s;
}
body main .cardsContainer .card .types .type .typeIcon .typeName {
  font-size: 1rem;
  font-weight: 600;
  color: #e6e9ed;
  position: absolute;
  transform: translateX(-10%) rotateX(-90deg);
  visibility: hidden;
  transition: 0.1s;
  padding-right: 0.5rem;
}
body main .cardsContainer .card .types .type .typeIcon:hover {
  transition: 1.5s;
}
body main .cardsContainer .card .types .type .typeIcon:hover img {
  transform: rotate(360deg);
  transition: 1.5s;
}
body main .cardsContainer .card .types .type .typeIcon:hover .typeName {
  position: relative;
  transform: translateX(0%) rotateX(0deg);
  visibility: visible;
  transition: 1s;
}
body main .cardsContainer .card:hover .photo > :not(.photoBg) {
  transform: scale(1.1);
  transition: 500ms;
}
body main .moreInfos {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
body main .moreInfos .divCloseInfo {
  width: 50%;
  min-width: 1000px;
  height: 60px;
  display: flex;
  justify-content: right;
}
body main .moreInfos .divCloseInfo .closeInfo {
  font-weight: 600;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(214, 77, 90);
  color: #e6e9ed;
  cursor: pointer;
  transition: 300ms;
  font-family: "Pixelify Sans", sans-serif;
  border: 3px solid rgba(0, 0, 0, 0.3);
}
body main .moreInfos .divCloseInfo .closeInfo:hover {
  transform: rotate(360deg);
  transition: 300ms;
}
body main .moreInfos .moreInfo {
  width: 50%;
  min-width: 1000px;
  height: 650px;
  background-color: rgba(237, 85, 100, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  border-radius: 30px 30px 30px 30px;
}
body main .moreInfos .moreInfo .pokeInfoNameId {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 12%;
  border-radius: 27px 27px 0px 0px;
  border: 3px solid rgba(0, 0, 0, 0.2);
}
body main .moreInfos .moreInfo .pokeInfoNameId .pokeInfoName, body main .moreInfos .moreInfo .pokeInfoNameId .pokeInfoId {
  font-family: "Pixelify Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 1000;
  color: #e6e9ed;
  text-transform: uppercase;
  text-align: center;
}
body main .moreInfos .moreInfo .pokeEverything {
  display: flex;
  height: 88%;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: column;
  border-radius: 0px 0px 0px 30px;
  border: 3px solid rgba(0, 0, 0, 0.3);
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 55%;
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto .infoSprite {
  width: 260px;
  height: 260px;
  position: absolute;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto .infoTypes {
  display: flex;
  justify-content: space-around;
  padding: 0.3rem;
  gap: 1rem;
  position: absolute;
  top: 2%;
  right: 2%;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto .infoTypes .infoType {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto .infoTypes .infoType .infoTypeIcon {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.2rem;
  gap: 0.2rem;
  position: relative;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto .infoTypes .infoType .infoTypeIcon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoPhoto .changeVarieties {
  display: flex;
  justify-content: space-around;
  padding: 0.3rem;
  gap: 1rem;
  position: absolute;
  top: 2%;
  left: 2%;
  background-color: #e6e9ed;
  width: 50px;
  height: 50px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .changeSpriteContainer {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 7%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .changeSpriteContainer .btnSprite {
  color: #e6e9ed;
  font-weight: 600;
  cursor: pointer;
  transition: 200ms;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .changeSpriteContainer .btnSprite:hover {
  transform: scale(1.05);
  transition: 200ms;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoMore {
  border-radius: 0px 0px 0px 30px;
  width: 100%;
  height: 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoMore .infoMoreValues {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.9rem;
  width: 80%;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoMore .infoMoreValues svg {
  height: 2.5rem;
  width: 2.5rem;
}
body main .moreInfos .moreInfo .pokeEverything .pokeInfo .infoMore .infoMoreValues .infoMoreValuesText {
  font-size: 1rem;
  font-weight: 600;
  color: #e6e9ed;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0px 0px 30px 0px;
  background-color: rgba(0, 0, 0, 0.2);
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoDescription {
  height: 20%;
  position: relative;
  border: 3px solid rgba(0, 0, 0, 0.3);
  padding: 1.2rem 1.2rem 0rem 1.2rem;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoDescription .infoDescriptionTitle {
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #e6e9ed;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.2rem 2rem 0.4rem 1rem;
  border-radius: 0px 0px 30px 0px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoDescription .infoDescriptionText {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e6e9ed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoStats {
  width: 100%;
  height: 35%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 1.2rem 0rem 1.2rem;
  border: 3px solid rgba(0, 0, 0, 0.3);
  position: relative;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoStats .infoStatsTitle {
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #e6e9ed;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.2rem 2rem 0.4rem 1rem;
  border-radius: 0px 0px 30px 0px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoStats .infoStat {
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: 0.2rem;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoStats .infoStat .infoStatName {
  color: #e6e9ed;
  font-weight: 600;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoStats .infoStat .infoStatBar {
  width: 100%;
  height: 20px;
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoStats .infoStat .infoStatBar .infoStatProgress {
  height: 100%;
  border-radius: 30px 0px 0px 30px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoEvolutions {
  height: 45%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.2rem 0rem 1.2rem;
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: 0px 0px 27px 0px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoEvolutions .infoEvolutionsTitle {
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #e6e9ed;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.2rem 2rem 0.4rem 1rem;
  border-radius: 0px 0px 30px 0px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoEvolutions .evolutionPhoto {
  width: 30%;
  height: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoEvolutions .evolutionPhoto svg {
  width: 180px;
  height: 180px;
}
body main .moreInfos .moreInfo .pokeEverything .pokeMore .infoEvolutions .evolutionPhoto img {
  position: absolute;
  width: 160px;
  height: 160px;
}

@keyframes appearCard {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}/*# sourceMappingURL=style.css.map */