/* style.css */

a:link { text-decoration: none; color:white;}
a:visited { text-decoration: none; color:white;}
a:hover { text-decoration: none; color:white;}
a:active { text-decoration: none; color:white;}


body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
}

#product {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

.product-image {
    max-width: 100%;
    margin-bottom: 1em;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    text-align: center;
}

.product-details h2 {
    margin-top: 0;
}

.cta-button {
    background-color: #0caebe;
    color: white;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 1em;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    font-size: 0.8em;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    #product {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }

    .product-image {
        max-width: 50%;
        margin-bottom: 0;
    }

    .product-details {
        max-width: 40%;
        text-align: left;
    }
}