
/* projects section styling */
#projects {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  #projects h2 {
    font-size: 2.5rem;
    font-weight: 400;
    border-bottom: 1px solid #fff;
    padding: 0 0 15px 0;
    max-width: max-content;
    margin: 0 auto 2rem;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 2rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 6rem;
  }
  
  .project {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .project:hover {
    color: #fff;
    transform: scale(1.1);
    
  }
  
  .project-image {
    width: 100%;
    height: calc(100% - 6.8rem);
    object-fit: cover;
  }
  
  .project-title {
    font-size: 1.2rem;
    /* padding: 1.5rem; */
    transform: translateY(-10px);
  }