/* Background color */

.nav {
    text-align: center;
    
}

/* Car sections */ 

.gallery-cars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0px; /* small space between images */
    max-width: 900px;
    margin: auto;
    padding: 10px;
  }
  
  .gallery-cars img {
    width: 100%;
    height: 150px;
    object-fit: cover; /* crops nicely to fit each block */
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  }
  
  /* About me image */
  
  .about-me img {
    display: block;
    margin: auto;
    width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: auto;
  }
/* Hover over effect for images */
  .about-me img:hover {
    transform: translateY(-4px);
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.4);
    
  }
  .gallery-cars img:hover{
    transform: translateY(-4px);
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.4);
    
  }