.sellerbody {
	grid-area: 3/2/4/4;
	display: flex;
	flex-direction: column;
}

.sellerheading {
	width: 100%;
	height: 100px;
}

.sellerheading h1 {
	line-height: 100px;
	text-align: center;
	color: rgb(230,0,51);
	font-family: Copperplate,Copperplate Gothic Light,fantasy;
	font-size: 30px;
	letter-spacing: 2px;
	font-weight: bold;
}

.sellercontainer {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.minisellernavbuttoncont {
	display: none;
}

.minisellernavbtn {
	display: none;
}
@media (max-width: 810px) {

	.sellerbody {
		grid-area: 3/1/4/5;
	}
	.minisellernavbuttoncont {
		width: 100%;
		height: 30px;
		display: block;
	}
	.minisellernavbtn {
		width: 25px;
		height: 25px;
		background: url(/gifs/squaremenu.png);
		outline: none;
		border: none;
		display: block;
		margin-left: 10px;
	}
  .sellerheading {
		height: 60px;
	}
	.sellerheading h1 {
		line-height: 60px;
	}
}