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

.content {
    text-align: center;
    margin-top: 50px; /* Added margin to push content down */
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #333;
}

.product-container {
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.product-image {
    max-width: 30%; /* Reduced image size */
    height: auto;
    border: 1px solid #000;
}

.purchase-link {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.purchase-link:hover {
    background-color: #0056b3;
}
