* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    background-color: #121212;
    color: #eaeaea;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}


#product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px; 
}

.product-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.price {
    font-weight: bold;
    color: #4caf50;
}

.copyright {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.copyright a {
  color: #4caf50;
  text-decoration: none;
}



