        
 body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}


.box {
  background-color: #f5f2f2;
  border-radius: 8px;
  box-shadow: 0 10px 13px rgba(174, 173, 173, 0.6); 
  text-align: center;
  padding: 10px; 
  flex: 1 1 calc(30% - 10px);
  max-width: calc(30% - 10px);
  cursor: pointer;
  transition: transform 0.2s ease;
  max-height: 400px; 
}

.custom-img {
  width: 100px; 
  height: 100px; 
  object-fit: cover; /* Mantiene el contenido de la imagen ajustado */
  border-radius: 10px; 
  float: left; 
}


.box h3 {
  margin-top: 10px; 
  font-size: 2.5em;
  text-align: left;
  color: #555353;
}

.box:hover {
  transform: scale(1.05);
  
  box-shadow: 0 10px 11px rgba(138, 137, 137, 0.6);
 
}

@media (max-width: 768px) {
  .box {
      flex: 1 1 100%;
      max-width: 100%;
  }
}