.sneakers-varieties {
    padding: 40px 20px;
    text-align: center;
  }

  body{
    background-color: hsl(212, 29%, 36% ,1);;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: 'Rosario', sans-serif;
    color: #fff;
  }
  
  .sneaker-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto; /* Center the grid in the container */
  }
  
  .sneaker-card {
    border: 1px solid #013a63;
    border-radius: 10px;
    overflow: hidden;
    max-width: 250px;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .sneaker-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .sneaker-info {
    padding: 15px;
  }
  
  .sneaker-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;;
  }
  
  .sneaker-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Rosario', sans-serif;
  }
  
  .sneaker-colors {
    font-size: 1rem;
    color: #666;
  }
  
  .sneaker-card:hover {
    transform: scale(1.05);
  }
  
  .sneaker-card:hover .sneaker-name {
    color: #013a63;
  }

  .btn{
    background-color: #013a63;
    color:  hsla(0, 0%, 100%, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: max-content;
    gap: 12px;
    min-height: 58px;
    padding-inline: 36px;
    border-radius: 32px 6px;
    transition:  0.25s ease;
    
}

.button-container {
    display: flex;          
    justify-content: center; 
    align-items: center;      
  }
  

  
  /* For larger screens (laptops/desktops) */
  @media (min-width: 1024px) {
    .sneaker-list {
      grid-template-columns: repeat(4, 1fr); 
    }
  }
  
  /* For medium screens (tablets) */
  @media (max-width: 1023px) and (min-width: 768px) {
    .sneaker-list {
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  /* For smaller screens (phones) */
  @media (max-width: 767px) {
    .sneaker-list {
      grid-template-columns: 1fr; 
    }
  }
  