*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}


body
{
    height: 100vh;
    width: 100vw;
    /* background: #355C7D;  
    background: -webkit-linear-gradient(to right, #C06C84, #6C5B7B, #355C7D);  
    background: linear-gradient(to right, #C06C84, #6C5B7B, #355C7D); */
    background: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#444444));
  background: linear-gradient(#EEEEEE, #444444);
    
  }
  
  .nav
  {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100px;
  margin-inline-start: 10%;
}
.logo
{
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
.logo img
{
  width: 15%;
}
.logo p
{
  font-size: 1.4rem;
  color: antiquewhite;
  font-weight: 600;
  width: 75%;
}
.innernav
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 100%;
}
.navi
{
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navi a
{
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 300;
  opacity: .5;
}
.navi a:hover
{
  opacity: 1;
}
.about
{
}
.game1
{
}
.game2
{
}
.pokebattle
{
}

.container
{
    height: 100%;
    width: 100%;
    display: flex;
    padding-top: 2%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2%;
    flex-wrap: wrap;
    
    
}

.item
{
    display: flex;
    height: 325px;
    width:325px;
    border-radius: 1.5%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    flex-direction: column;
    margin: 2%;
    transition: all linear 0.3s;
    background: #D3CCE3;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #E9E4F0, #D3CCE3);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #E9E4F0, #D3CCE3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    

}
.item:hover
{
    transform: scale(1.1);
}
.image
{
    display: flex;
    height: 60%;
    width: 100%;
    border-radius: 1.5%;
    padding-top: 5%;

}
.image img
{
    height: 100%;
    width: 100%;
    border-radius: 1.5%;
  
}


.content1
{
    display: flex;
    height: 15%;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;

}

.content2
{

    display: flex;
    height: 25%;
    width: 100%;
    padding: 0.5%;

}

.dp
{
    display: flex;
    height: 100%;
    width: 50%;
    justify-content: center;
    align-items: center;

}
.dp img
{
    height: 75%;
    width: 40%;

}
.name
{
    display: flex;
    height: 100%;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: top;
}
.name p{
    font-size: 1rem;
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tag
{
    display: flex;
    height: 50%;
    width: 100%;
    justify-content: center;
    align-items: center;
} 
#tagit
{
    display: flex;
    height: 80%;
    width: 50%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px;
    border: 2px soid black;
    justify-content: center;
    align-items: center;
    
}

/* detail page */

.detail-main .header {
  padding: 20px 20px 24px 20px;
  position: relative;
  z-index: 2;
}

.detail-main .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
}

.detail-main .header-wrap {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.detail-main .back-btn-wrap {
  max-height: 32px;
}

.detail-main .back-btn-wrap path,
.detail-main .header-wrapper p,
.detail-main .header-wrapper h1 {
  fill: var(--grayscale-white);
  color: var(--grayscale-white);
}

.detail-main .pokemon-id-wrap p {
  font-weight: var(--font-weight-bold);
}

.detail-img-wrapper {
  width: 200px;
  height: 200px;
  margin: auto;
  position: relative;
  z-index: 3;
}

.detail-img-wrapper img {
  width: 100%;
  height: 100%;
}

.detail-card-detail-wrapper {
  border-radius: 8px;
  background-color: var(--grayscale-white);
  box-shadow: var(--drop-shadow-inner);
  padding: 56px 20px 20px 20px;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.power-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.power-wrapper > p {
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: var(--font-weight-bold);
  color: var(--grayscale-white);
  text-transform: capitalize;
  background-color: #74cb48;
}

.pokemon-detail.move p {
  text-transform: capitalize;
  word-break: break-all;
}

.list-item .name-wrap p {
  text-transform: capitalize;
}

.detail-card-detail-wrapper .about-text {
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.pokemon-detail-wrapper {
  display: flex;
  align-items: flex-end;
}

.pokemon-detail-wrapper .pokemon-detail-wrap {
  flex: 1;
  text-align: center;
  position: relative;
}

.pokemon-detail-wrap:before {
  content: "";
  background-color: var(--grayscale-light);
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.pokemon-detail-wrap:last-child::before {
  display: none;
}

.pokemon-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 8px;
}

.pokemon-detail-wrapper {
  min-height: 76px;
}

.pokemon-detail.move {
  flex-direction: column;
  gap: 0;
  align-items: center;
  padding: 8px 5px;
}

.pokemon-detail-wrap > .caption-fonts {
  color: var(--grayscale-medium);
}

.pokemon-detail-wrap .straighten {
  transform: rotate(90deg);
}

.detail-card-detail-wrapper .pokemon-description {
  color: var(--grayscale-dark);
  text-align: center;
}

.stats-wrap {
  display: flex;
  align-items: center;
}

.stats-wrap p {
  color: var(--grayscale-dark);
  margin-right: 8px;
  min-width: 19px;
}

.stats-wrap p.stats {
  text-align: right;
  padding-right: 8px;
  min-width: 35px;
  border-right: 1px solid var(--grayscale-light);
  font-weight: var(--font-weight-bold);
}

.stats-wrap .progress-bar {
  flex: 1;
  border-radius: 4px;
  height: 4px;
}

.stats-wrap .progress-bar::-webkit-progress-bar {
  border-radius: 4px;
}

.stats-wrap .progress-bar::-webkit-progress-value {
  border-radius: 4px;
}

.detail-bg {
  position: absolute;
  z-index: 1;
  right: 8px;
  top: 8px;
  opacity: 0.1;
}

.detail-bg path {
  fill: var(--grayscale-white);
}

div#not-found-message {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
}

.arrow img {
  -webkit-filter: brightness(0) grayscale(1) invert(1);
  filter: brightness(0) grayscale(1) invert(1);
  width: 28px;
}

.featured-img {
  position: relative;
}

.featured-img a.arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.featured-img a.arrow.left-arrow {
  left: -2rem;
}

.featured-img a.arrow.right-arrow {
  right: -2rem;
}

.detail-main.main {
  height: max-content;
  border-color: transparent;
  background-color: transparent;
}



/* navabar */

/* 
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
* {
  font-family: "Handlee", cursive;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1vh 2vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 0px 10px 0 rgba(31, 38, 135, 0.37);
          box-shadow: 0 0px 10px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 5px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
}
*/
.navbar .logo img {
  height: 6vw;
  width: 20vw;
}
/*
.navbar nav {
  width: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.navbar nav a {
  text-decoration: none;
  color: #272727;
  font-size: 20px;
  padding: 2vh 2vw;
  border-radius: 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.navbar nav a:hover {
  background-color: #fade0c;
}

@media only all and (max-width: 1000px) {
  .navbar nav {
    width: 60vw;
  }
  .navbar .logo img {
    height: 10vw;
    width: 50vw;
  }
}

@media only all and (max-width: 850px) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .navbar nav {
    width: 100vw;
  }
  .navbar .logo img {
    height: 10vw;
    width: 50vw;
  }
}

@media only all and (max-width: 600px) {
  .navbar {
    position: relative;
  }
  .navbar .logo img {
    height: 10vw;
    width: 50vw;
  }
}
# sourceMappingURL=navbar.css.map */
