/*Common Styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    line-height: 1.7;
}

body{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/*End of Common Styles*/

/*Navbar Styling*/

header{
    display: flex;
    gap: 4rem;
    height: 10rem;
    width: 100%;
    padding: 0.5rem;
}

.logo{
    height: 100%;

}

#image{
    height: 70%;
    width: 20rem;
}


nav > ul{
    display: flex;
    gap: 5rem;
    /* justify-items: center; */
    /* align-content: center; */
}

nav > ul > li{
    list-style: none;
}

nav > ul > li> a{
    text-decoration: none;
    font-size: 4rem;
    color: #1A202C;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

nav > ul > li > a:hover{
    background-color: gray;
    border-radius: 0.2rem;
    color: #010c16
}

/*End of Navbar Styling*/

/*Start of Products Styling*/

.containerforproducts{
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    
}

.products-arrangement{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.containerforproducts > h2{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.products{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 0.2rem solid #010c16;
  box-sizing: border-box; 
    flex: 1 1 25rem;
    padding: 1rem;
    min-width: 0;
}

.products > .product-title{
    font-size: 2rem;
}

.products > .product-desc{
    font-size: 1.5rem;
    
}

.products > .product-price{
    font-size: 1rem;
}

.imag{
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.hidden{
    display: none;
}

/*End of Products Styling*/

#comingsoonparagraph{
    font-size: 3rem;
    text-align: center;
}

#h2ofhome{
    font-size: 4rem;
    text-align: center;
}