
*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    
}
body{
    background-image: url('balajibackground.jpg');
  background-attachment: fixed;
  background-size:cover;
  overflow-x: hidden;
}
#mainContainer::-moz-scrollbar {
    display: none;
}
#mainContainer{
    width: 100%;
    height: 100%;
    color: white;
}
#searchItem{
    position: fixed;
    display: block;
    transition: top 0.6s;
    top:0;
    width: 100vw;
    background:#131313;
    display: grid;
    box-sizing: border-box;
    grid-template-columns:50px 200px 100%;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    box-shadow: 1px 1px 5px black;
    padding: 5px 5px 5px 0px;
}

#shoplogo{
    width: 140px;
    justify-self: left;
    box-sizing: border-box;
    margin-left: 5px;
}
#shopName{
    font-size: 1.5em;
    font-weight: 900;
    justify-self: start;
    color : white;
    margin-left: 20px;
}
.homeLink{
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
}
#takeInput{
    width: 100%;
    height: 30px;
    border: 2px solid white;
    box-sizing: border-box;
    border-radius: 10px;
    outline: none;
    padding: 10px;
    justify-self: right;
    margin-right: 20px;
    background: rgb(247, 247, 247);
}

#itemContainer{
    margin-top: 70px;
}
table{
    margin: auto;
}
td{
    width: 300px;
    padding: 0 10px 0 10px;
    border-radius: 10px;
    border: 1px solid white;
}
.imageTd{
    background-color: white;
}
.product-img{
    width: 300px;
    height: 168.338px;
    object-fit: contain;
}
.productName{
    text-transform: capitalize;
    font-size: 1.25rem;
    font-weight: bold;
}
.productDetails{
    font-weight: 660;
}



/* CSS For SmartPhone*/
@media only screen and (max-width: 600px) {
    #searchItem{
        height: 50px;
        grid-template-columns:40px 150px 100%;
    }
    #shopName{
        font-size:1.1rem;
        margin: 0;
    }
    #takeInput{
        width: 100%;
        height: 30px;
        margin: 0;

    }
    .product-img{
        width: 100%;
        height: 150px;

    }
    .productName{
        font-size: 1rem;
    }
    .productDetails{
        font-weight: 660;
    }
    #shoplogo{
        width: 120px;
    }
  }