
        #wrapper {
            width: 1024px;
            background-color: #f5e9f7;
            margin: auto;
            
            font-family: Times, sans-serif;
        }
        #banner {
            width: 100%;
            height: 150px;
            background: url('banner.jpg') no-repeat center/cover;
            text-align: center;
            color: rgb(0, 0, 0);
            font-size: 2em;
            line-height: 150px;
            font-weight: bold;
        }

        .button {
            padding: 10px 20px;
            font-size: 16px;
            margin-top: 20px;
        }
        .audio-icon {
            cursor: pointer;
            border-radius: 50%;
            width: 48px;
            height: 48px;
        }
        
  
        #menu {
            width: 100%;
            height: 40px;
            background-color: #ff6699;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        #menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }
        
        #content {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
        }
        .product {
            width: 30%;
            margin: 1.5%;
            background-color: white;
            padding: 10px;
            text-align: center;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .product img {
            width: 100%;
            height: auto;
        }
        .product h3 {
            margin: 10px 0;
        }
        .product p {
            color: #ff6699;
            font-weight: bold;
        }
        .add-to-cart {
            background-color: #ff6699;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            margin-top: 10px;
        }
        #cart {
            padding: 20px;
            background-color: white;
            margin: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        #footer {
            width: 100%;
            height: 50px;
            background-color: #333;
            color: white;
            text-align: center;
            line-height: 50px;
        }
.product:hover,
.audio-icon:hover,
.product h3:hover,
.product p:hover,
.add-to-cart:hover,
.info-button:hover {
    background-color: #ffffff;
    color: black;
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.add-to-cart:hover {
    background-color: #ff6699;
    color: black;
    transform: scale(1.05);
    transition: all 0.3s ease;

}