/* Main Content Styling */
main {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

/* Product Section */
.product {
    display: flex;
    align-items: flex-start;
    text-align: left;
    height: 350px;
    margin-right: 190px;
}

.product img {
    width: 200px;
    height: 200px;
    animation: floatUpDown 0.5s ease-in-out 6 alternate;
    margin-right: 20px;
    float: left;
}

.product p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.5;
    text-align: left;   
}

.recommend {
    width: 180px;
    background-color: #f5e1c0;
    padding: 10px;
    position: absolute;
    top: 0px;
    right: 0px;
    height: auto;
}

.recommend img {
    width: 50px;
    height: auto;
    transition: width 3s linear;
}

.recommend img:hover {
    width: 125px;
}

.recommend p {
    font-weight: bold;
}

.recommend a {
    color: black;
    text-decoration: underline;
    font-weight: normal;
}

.recommend a:hover,
.recommend a:focus {
    color: green;
}

/* Keyframes for floating effect */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}