body{
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

.menuwrapper .logo {
	height: 40px;
}

.icon-grid {
	margin: 0 auto;
	width: 1000px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 80px 0px;
	/*transform: translateY(calc(50vh/2));*/
	user-select: none;
}

.icon-grid img {
	 width: 70px;
	  height: 70px
}

.icon-grid .product {
	margin: 0 auto;
	width: 100;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	transition: box-shadow 0.5s;
	border-radius: 10px;
	padding: 0px 10px;
	background-color: white;
	box-shadow: 0px 0px 5px 2px #0002;
	
}



.icon-grid .product:hover {
	box-shadow: 0px 0px 5px 2px #0006;
}

.menuwrapper {
	background-color: #333;
	padding: 20px;
	position: fixed;
	width: 100vw;
	bottom: 0;
	box-shadow: 0px 0px 5px 5px #0002;
}

.menu {
	max-width: 300;
	margin: 0 auto;
}

.content {
	max-width: 1600px;
	margin: 0 auto;
	height: calc(100dvh - 80px - 20px);
	flex: 1; display: flex; 
	flex-direction: column-reverse;
	background-color: #ddd;
	background-image: linear-gradient(45deg, #ed3237ff, #51a8b1ff);
	padding: 0px 0px 20px 0px;
}

img {
	pointer-events: none;
}


@media screen and (max-width: 800px) { /* small devices */
  .bigscreen {
    display: none;
  }
  
    .icon-grid {
	width: 340px;
    gap: 20px 0px;
	grid-template-columns: repeat(3, 1fr);
  }
  
  .icon-grid img {
	 width: 50px;
	 height: 50px
	}

	.icon-grid .product {
		margin: 0 auto;
		width: 80px;
		height: 80px;
		font-size: 12px;
		text-align: center;
		cursor: pointer;
		transition: box-shadow 0.5s;
		border-radius: 10px;
		padding: 5px;
		background-color: white;
		box-shadow: 0px 0px 5px 2px #0002;
		
	}
  


}

@media screen and (min-width: 800px) {
  .smallscreen {
    display: none;
  }
}
