* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #2d3137;
  color: white;
  min-height: 100vh;
}

/* navigarion section */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12vh;
  /* margin: 1.5rem 2rem; */
  padding: 0.5rem 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(10px);
  /* height: 76px; */
  background-color: #212429;
  box-shadow: 0 2px 10px #111;
  border-radius: 0 0 15px 15px;
}
/* nav logo */
nav .logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #00ff72;
}
nav .logo:hover {
  text-shadow: 0 0 6px #00ff72;
  cursor: pointer;
}
/* middle section search options */
.searchOption {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #312e2e;
  border-radius: 20px;
  padding: 0 0.9rem;
  width: 25vw;
  cursor: pointer;
}
.searchOption:focus-within {
  border: 2px solid #00ff72;
}
.searchOption:hover {
  box-shadow: 0 0 6px #00ff72;
}
.searchOption input {
  width: 100%;
  height: 2.5rem;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 1rem;
  padding: 0 1rem;
}
.searchOption i {
  border-left: 3px solid white;
  padding-left: 0.5rem;
}
/* right section buttons */
nav .btn {
  padding: 0.5rem 1rem;
  border: 5px solid #2a2d31;
  border-radius: 20px;
  margin-left: 1rem;
  cursor: pointer;
  background-color: rgb(62, 60, 60);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  transition: all 0.3s ease;
}
nav .btn a {
  text-decoration: none;
  color: aliceblue;
}
nav .btn:hover {
  background-color: #00ff72;
  color: white;
  border: 2px solid #00ff72;
  box-shadow: 0 0 6px #00ff72;
}
/* section after nav bar */
section {
  margin: 2rem;
}
section .catagories {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
section .catagories .cat {
  padding: 0.5rem 1rem;
  border: 5px solid #2a2d31;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    135deg,
    #305d15 0,
    rgba(46, 88, 0, 0.9607843137254902) 49%,
    rgba(63, 138, 31, 0.5215686274509804) 50%,
    #42a52d 100%
  );
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cat:hover {
  background-color: #00ff72;
  /* transform: translaeY(0.5rem); */
  transition: all 0.3s ease;
  transform: scaleX(1.2) scaleY(1.1);
}
/* nav section end */
/* main section before wallpaper starts */
main {
  margin: 0 2rem;
}
main h2 {
  margin-bottom: 1rem;
  border-left: 5px solid #42a52d;
  padding-left: 0.5rem;
}
/* main sections ends */
/* wallpaper section starts */
.wallpaper-section {
  /* background-color: #00ff72; */
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  grid-area: auto;
}
.wallpaper-section .wallpaper {
  margin: 1rem 3rem;
  background-color: #212429;
  border: 15px solid #2a2d31;
  /* border-radius: 10px; */
  box-shadow: 0 0 6px #111;
  /* gap: 20px; */
}
.wallpaper-section .wallpaper img {
  height: auto;
  width: 25vw;
}
/* BEFORE FOOTER SECTION */
.page-skip {
  display: flex;
  margin: 2rem;

  /* background-color: red; */
}
.page-skip ul {
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
  /* gap: 1rem; */
  padding: 1rem;
  position: fixed;
  z-index: 1000;
}
.page-skip ul li a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    135deg,
    #305d15 0,
    rgba(46, 88, 0, 0.9607843137254902) 49%,
    rgba(63, 138, 31, 0.5215686274509804) 50%,
    #42a52d 100%
  );
  border: 3px solid #2a2d31;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  /* padding: 0.5rem 1rem; */
  padding: 0.9rem 0.5rem;
  width: 100px;
}
.page-skip ul li a:hover {
  background-color: #00ff72;
  /* transform: translaeY(0.5rem); */
  transition: all 0.3s ease;
  transform: scaleX(1.2) scaleY(1.1);
}
.page-skip ul li a i {
  font-size: 1.5rem;
}

/* wallpaper section ends */
/* footer section starts */
footer {
  margin-top: 2rem;
  height: 20vh;
  background: #212429;
  padding: 15px 0;
  margin: auto;
  display: block;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
footer p {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}
footer .store img {
  border: 4px solid #2a2d31;
  border-radius: 20px;
}
/* responsive deisgn stats from here */

@media screen and (max-width: 1000px) {
  nav .searchOption {
    width: 50vw;
  }
  .wallpaper-section {
    grid-template-columns: 1fr 1fr;
  }
  .wallpaper-section .wallpaper {
    margin: 1rem auto;
  }
  .wallpaper-section .wallpaper img {
    width: 30vw;
  }
}

@media screen and (max-width: 768px) {
  .wallpaper-section {
    grid-template-columns: 1fr;
  }
  .wallpaper-section .wallpaper {
    margin: 1rem auto;
  }
  .wallpaper-section .wallpaper img {
    width: 40vw;
  }
  nav .searchOption {
    width: 40vw;
  }
}
