.strain-image {
  max-width: 600px;
  height: auto;
  

  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  

  border: 2px solid #e0e0e0; 
  
  transition: transform 0.3s ease;
}

.strain-image:hover {
  transform: scale(1.02);
}