@charset "UTF-8";

@import url(style.css);

@import url(nav.css);

@import url(footer.css);

#catalog {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.catalog-content {
    text-align: center;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product {
    margin: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.2);
}

.product img {
    max-width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.6s ease;
}

button:hover {
    background-color: #2980b9;
    
}
