/*karina custom css*/

.projects-section {
    padding: 50px 0;
  }
  
  .projects-section .section-title {
    font-size: 2rem;
    font-weight: bold;
  }
  
  #Galleri img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  #Galleri img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  #Galleri .col-md-3, #Galleri .col-sm-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    width: 200%;
  }
  #Galleri .project {
    padding: 20px; /* Add some padding for better spacing */
}

#Galleri video {
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the video horizontally */
}

#Galleri .project-text {
    color: white;
}

#Galleri {
    margin-top: 20px; /* Add some margin to the section for separation */
}