/* Reset some default margin and padding */
*{
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

header {
    background-color: #b40000;
    color: #923333;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navb{
    font-size: 25px;
    text-transform: capitalize;
}

.mainHeading{
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
#home{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20rem;
    flex-direction: column;
}
.bnr img{
    width: 100%;
    height: 100%;    
}
#about{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20rem;
    flex-direction: column;
}
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}


footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}


h2{
	text-align: center;
	margin-bottom: 5rem;
	font-size: 4rem;
}

.all-products{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.product{
	overflow: hidden;
	background: #ffffff;
	color: #21201e;
	text-align: center;
	width: 240px;
	height: 400px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 1.2rem;
	margin: 2rem;
}

.product .product-title, .product .product-price{
	font-size: 18px;
}

.product:hover img{
	scale:  1.1;
}

.product:hover {
	box-shadow: 5px 15px 25px #eeeeee;
}

.product img {
	height: 200px;
	margin: 1rem;
	transition: all 0.3s;
}

.product a:link, .product a:visited{
	color: #ececec;
	display: inline-block;
	text-decoration: none;
	background-color: #2c3e50;
	padding: 1.2rem 3rem;
	border-radius: 1rem;
	margin-top: 1rem;
	font-size: 14px;
	transition: all 0.2s;
}

.product a:hover{
	transform: scale(1.1);
}