body{
    background: #fff;
  }
  #latest-projects {
      background-color: #fff;
      padding: 50px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .project {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .project-3 {
    width: 500px;
  }
  
  .project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  .project img:hover {
    transform: scale(1.1);
  }
  
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .project-overlay h3 {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  
  .project-overlay .project-link {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: translateY(50%);
    opacity: 0;
  }
  
  .project-overlay .project-link:hover {
    background-color: #333;
    color: #fff;
  }
  
  .project:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
  }
  
  .project:hover .project-overlay {
    opacity: 1;
    transform: translateY(-10px);
  }
  .project:hover .project-overlay .project-link {
    transform: translateY(0);
    opacity: 1;
  }
  
  .project:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .project:hover:before {
    opacity: 1;
  }
  #h1 h1{
    font-family: "Heebo", sans-serif;
    color: #000;
    text-align: center;
    font-size: 2.5rem;
    color: black;
    text-align: center;
    font-weight: 500;
  }
  .cont {
    height: 185px;
    width: 90px;
}
  