/* Reset some default styles */

header {
    text-align: center;
    padding: 2rem 0;
    background-color: #f0f0f0;
}

header img {
    max-width: 100%; /* Set maximum width to adjust to screen size */
    height: auto; /* Maintain aspect ratio */
}

body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}



main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem;
    text-align: center; /* Add this line */
}

.product-title{
    text-align: center;
    font-size: 45px;
    margin-top: 2rem;
    color: #333;
    width: 100%; /* Add this line */
}

.product {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    width: 300px; /* Set a fixed width for the product box */
    height: 250px; /* Set a fixed height for the product box */
    margin: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
}

.product img {
    max-width: 100%;
    max-height: 200px;
}

.product h2 {
    margin-top: 0.5rem;
}

.product p {
    color: #666;
    margin-top: auto;
    
}

.price {
    display: block;
    color: #00aaff;
    font-weight: bold;
    margin-top: 0.5rem;
}


footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
}