﻿.bots { 
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap; 
}
.bot { 
  width: 300px; 
  text-align: center; 
}
.bot img { 
  width: 100%; 
  height: 400px; 
  object-fit: cover; 
  border-radius: 10px; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}
a img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}