 #container{
            width: 100%;
            margin: auto;
            background-color: black;
        }
        #menu{
            height: 50px;
            justify-items: center;
        }
        #menu li{
            display: inline-block;
        }
        #menu li>a{
            font-size: 30px;
            margin-right: 70px;
            text-decoration: none;
            color: lightcoral;
        }
        #content{}
        #content .listitem{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        #content .listitem .product{
            width: 300px;
            height: 400px;
            color: lightcoral;
            padding: 35px;
            box-sizing: border-box;
        }
        #content .listitem .product img{
            width: 100%;
            height: 100%;
        }
        #content .listitem .product h1{
            color: lightcoral;
            text-align: center;
            font-size: 35px;
        }
        #content .listitem .product:hover img{
            transform: scale(1.2);
        }