* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            width: 100vw;
            display: flex;
            flex-direction: column;
        }
        header{
            height: 10vh;
            width: 100%;
            background-color: yellow;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 10;
            box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.504);
            display: flex;
            align-items: center;
        }
        nav{
            height: 100%;
            width: 90%;
            display: flex;
            align-items: center;
        }
        #logo{
            height: 60px;
            width: 60px;
        }
        nav>p{
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-weight: bolder;
            font-size: x-large;
        }
        #container{
            width: 100%;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 20px 10px;
            padding: 20px;
        }
        .card{
            height: 300px;
            width: 160px;
            padding: 20px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: 10px;
            box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.221);
        }
        .innercard{
            height: 310px;
            width: 90%;
            overflow: scroll;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            -ms-overflow-style: none; 
        }
        .innercard::-webkit-scrollbar {
            display: none;                /* Chrome, Safari */
        }
        .image{
            margin-top: 20px;
            min-height: 100px;
            min-width: 100px;
            max-height: 100px;
            max-width: 100px;
        }
        .title{
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 1rem;
            text-align: center;
            font-weight: bolder;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.662);
        }
        .price{
            margin-top: 10px;
            align-self: flex-start;
            color: rgba(0, 0, 0, 0.804);

            &::before{
                content: "Price : ";
                font-weight: bold;
                color: black;
                font-size: 0.92rem;
            }
        }
        .category{
            align-self: flex-start;
            color: rgba(0, 0, 0, 0.804);

            &::before{
                content: "Category : ";
                font-weight: bold;
                color: black;
                font-size: 0.92rem;
            }
        }
        .description{
            font-size: 0.8rem;
            color: rgba(0, 0, 0, 0.804);

            &::before{
                content: "Description : ";
                font-weight: bold;
                color: black;
                font-size: 0.92rem;
            }
        }

        footer{
            height: 5vh;
            width: 100%;
            background-color: lightgreen;
            display: flex;
            align-items: center;
            justify-content: center;
        }