.project-page-wrapper{
  padding: 80px 100px;
}

/* GRID */
.web-div{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.project-card{
  background: rgba(20, 20, 20, 0.7);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.project-card:hover{
  transform: translateY(-8px);
  border: 1px solid rgba(57,255,20,0.3);
}

/* IMAGE */
.project-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.85;
}

.project-img:hover{
  opacity: 1;
}

/* CONTENT */
.project-content{
  padding: 15px;
}

/* TITLE - SINGLE LINE */
.project-title{
  font-size: 16px;
  color: #39FF14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* DESCRIPTION */
.proj-dis{
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 8px 0;
  line-height: 20px;
}

/* STACK */
.proj-using{
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* LINKS */
.project-links{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.project-links a{
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #39FF14;
  border: 1px solid rgba(57,255,20,0.3);
  padding: 6px;
  border-radius: 5px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.project-links a:hover{
  background: #39FF14;
  color: black;
}

/* TITLES */
.title-5{
  text-align: center;
  font-size: 24px;
  color: white;
  margin-bottom: 40px;
}

.webdev-project{
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.webdev-project span{
  color: #39FF14;
}

/* MOBILE */
@media screen and (max-width:600px){

  .project-page-wrapper{
    padding: 60px 20px;
  }

  .project-title{
    font-size: 15px;
  }

  .project-img{
    height: 150px;
  }
}