html{
	background-color: #343742;
	box-sizing: border-box;
}
.heading{
	text-align: center;
	font-size: 32px;
	max-width: 100vw
}
body{
	color: #A31600;
}
#icon{
	width: 250px;
	hight: 250px;
}
#icondiv{
	text-align: center;
}
p{
	text-align: center;
	font-size: 24px;
	color:white;
}
.foot{
	font-size: 24px;
	padding-top:4%;
	padding-bottom:4%; 
	padding-left: 4%;
	padding-right: 4%;
	background-color:#1F1F1F;
	border-radius: 10px;
	position: relative;
	align-content: center;
	width: 91%;
	bottom: 10px;
}
.container{
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 0%;
}
.gallery{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-rows: repeat(auto-fit);
	grid-gap: 100px;
}
.gallery img{
	width: 100%;

}