* {
  padding: 0px;
  margin: 0px;
}
.navbar-main-div {
  min-height: 10vh;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #4b3618, #6f5425, #a67c52, #d2b48c);
}
.navbarIconDiv {
  display: none;
}
.nav-inner-div {
  min-height: 10vh;
  min-width: 95%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.nav-ele a {
  text-decoration: none;
  color: black;
  font-family: "Noto Serif Display", serif;
  font-size: 1.6em;
  font-weight: 520;
  transition: all 0.3s linear;
  height: 100%;
  width: 100%;
  text-align: center;
  padding-top: 10px;
  transition: all 0.1s linear;
}
.nav-ele {
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
  height: 100%;
  border-bottom: 2px solid transparent;
}
.nav-ele:hover {
  border-bottom: 2px solid white;
}
.nav-ele a:active {
  transform: scale(0.95);
}
.nav-ele:hover a {
  color: white;
  text-shadow: 2px 6px 8px black;
  font-weight: 700;
}

.project-main-div {
  min-width: 100%;
  min-height: 100vh;
  background: linear-gradient(to right, #4b3618, #6f5425, #a67c52, #d2b48c);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-in-div {
  min-width: 90%;
  min-height: 80%;
}
#project-title {
  font-family: "Noto Serif Display", serif;
  font-weight: 600;
  font-size: 3rem;
  color: black;
  text-align: center;
}
.all_project {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  margin-bottom: 20px;
}
.in-div {
  border: 3px solid black;
  margin: 3%;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  display: grid;
  grid-template-rows: 0.2fr 1fr 0.8fr auto;
  /* min-height: 200px; */
}
.protitle{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
  margin: 10px;
  padding: 10px;
}
.in-div:hover .protitle {
  border-radius: 10px;
  box-shadow: 0px 0px 10px #7b4a06;
  /* background-color: #6f5425; */
}
.protitle h2{
   font-family: "Arapey", serif;
  font-weight: 900;
  color: black;
}
.proj_links {
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* padding-bottom: 30px; */
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.in-div:hover .proj_links {
  box-shadow: 0px 0px 10px #7b4a06;
  /* background-color: #6f5425; */
}
.proj_logo_div > img {
  max-height: 300px;
  text-align: center;
}
.proj_links img {
  max-height: 60px;
}
.proj_logo_div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.proj_dec {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  color: white;
  font-family: "Arapey", serif;
  font-size: 1.5rem;
  padding: 20px;
}
.proj_dec p{
  font-weight: 500;
  text-align: center;
}
.in-div:hover {
  border: white 3px solid;
}
@media (min-width: 600px) and (max-width: 1000px) {
  .nav-ele a {
    font-size: 1.05rem;
  }

  #project-title {
    font-weight: 600;
     font-size: 2.5rem;
  }
  .all_project {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .in-div {
    margin-left: 10%;
    margin-right: 10%;
    height: fit-content;
    width: fit-content;
  }
  .in-div h2 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .navbarIconDiv {
    display: block;
    min-height: 10vh;
    width: 100%;
    height: 50px;
    position: relative;
  }
  .nav-links {
    text-decoration: none;
    background-color: black;
    border: 2px solid white;
    border-radius: 10px;
    width: max-content;
    position: absolute;
    right: 20px;
    top: 50px;
    z-index: 2;
  }
  .nav-links li {
    width: max-content;
    font-size: 1.5rem;
    margin: 10px;
    padding: 20px;
    text-align: center;
  }
  .nav-links a {
    text-decoration: none;
    color: #d2b48c;
    font-weight: 900;
    font-family: "Arapey", serif;
     padding-bottom:2px ;
  }
  .menu-close-icon {
    cursor: pointer;
    position: absolute;
    right: 20px;
  }
  .menu-open-icon {
    right: 20px;
    cursor: pointer;
    display: none;
    position: absolute;
  }

  .nav-inner-div {
    display: none;
  }
  #project-title {
    font-weight: 600;
    font-size: 2rem;
  }
  .proj_logo_div > img {
    max-height: 300px;
    text-align: center;
  }
  .proj_links img {
    /* max-height: 80px; */
  }
  .all_project {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .in-div {
    height: auto;
    max-width: 500px;
  }
  .in-div h2 {
    font-size: 1.8rem;
  }
}
