@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  user-select: none;
}

header {
  background-color: #f0f0f0;
  width: 100%;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 200px;
}

.logo2 {
  width: 12em;
  height: 2.7em;
  margin-left: -100px;
}

.navigation a {
  color: #000;
  text-decoration: none;
  font-size: 1em;
  font-weight: 700;
  padding-left: 25px;
}

.navigation a:hover {
  color: #83c12e;
}
section {
  min-height: 100vh;
  width: 100%;
  padding: 100px 200px;
  /*background-image: url("https://th.bing.com/th/id/OIP.L0cA6MErmxcB31jqD9em0wHaFs?w=203&h=180&c=7&r=0&o=5&pid=1.7");*/
  background-image: url("Pics/1586344.jpg");
  background-repeat: repeat;
}
.logo {
  text-align: center;
  margin-top: 20px;
  font-size: 2em;
}
.content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.projectCard {
  background-color: white;
  border: 2px solid rgb(0, 0, 0);
  height: 17em;
  width: 15em;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px;
  transition: 0.7s ease;
}
.projectCard:hover {
  transform: scale(1.1);
}
.projectCard:hover .project-img {
  opacity: 0.9;
}
.project-img {
  height: 70%;
}
.project-img img {
  width: 100%;
  height: 100%;
}
.project-info {
  padding: 1em;
}
.project-category {
  font-size: 0.8em;
  color: #000;
}
.project-title {
  display: flex;
  justify-content: center;
  font-weight: 800;
  margin-top: 8px;
  font-size: 1.1em;
  text-align: center;
}
.pic {
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  min-width: 60em;
  height: 60em;
  border: #000 2px solid;
  background-image: url("wire pics/UG_page-0001.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.7s ease;
}
.pic:hover {
  transform: scale(1.01);
}

.footer {
  background-color: #000016;
  color: white;
  padding: 2em;
  display: flex;
  justify-content: space-between;
}
.footer-title {
  font-size: 1.3em;
  font-weight: 600;
}
.footer-title span {
  color: #71962c;
}

.footer .social-icons a {
  font-size: 1.3em;
  padding: 0 35px 0 0;
  color: white;
}

#pic1 {
  background-image: url("Web pics/4.jpg");
  height: 38.5em;
}
@media (max-width: 1024px) {
  header {
    font-size: 8px;
  }
  .pic {
    display: none;
  }
  .navigation a {
    font-size: 12px;
  }
  .logo2 {
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  header {
    font-size: 10px;
    justify-content: center;
  }
  .logo2 {
    margin-left: auto;
    margin-right: auto;
  }
  .navigation a {
    display: none;
  }
}
@media (max-width: 425px) {
  .logo {
    font-size: 20px;
    width: 250px;
    margin-left: -110px;
  }
  .content {
    width: 425px;
    margin-left: -200px;
  }
  .projectCard {
    height: 12em;
    width: 10.7em;
  }
  .footer {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  section {
    width: 375px;
  }
  .logo {
    font-size: 16px;
    margin-left: -130px;
  }
  .content {
    width: 375px;
    margin-left: -185px;
  }
  .projectCard {
    height: 9em;
    width: 8em;
  }
  .project-title {
    font-size: 10px;
    margin-top: -8px;
  }
  .footer {
    font-size: 10px;
    width: 400px;
  }
}
