@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body, html {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	background: #eeeeee;
}

header {
	background: #2d2d2d;
	color: white;
	padding: 30px 50px;
	display: flex;
	justify-content: space-around;
	margin: 0;
}

.logo {
	font-size: 30px;
}

menu {
	display: flex;	
	background: #525050;
	color: white;
	justify-content: space-around;
	margin: 0;
	padding: 20px
}

.exclusive {
	background: #5611ff;
	color: white;
	text-transform: uppercase;
	text-decoration: underline;
	font-size: 13px;
	padding: 20px;
	text-align: center;
}

.cart-header {
	background: white;
	margin-bottom: 20px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
}

.cart-body {
	background: white;
	margin-bottom: 20px;
	padding: 20px;
}

.cart-item {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.title {
	font-size: 20px;
}

.main-content {
	padding: 20px;
}

.cart-restriction {
	font-size: 14px;
	font-color: grey;
}

.item-image {
	width: 16%;
}

.item-image img {
	width: 100%;
}

.cart-item {
	font-size: 20px;
}

footer {
	padding: 30px;
	background: black;
	color: white;
	display: flex;
	justify-content: space-between;
}

.buttons {
	display: flex;
	justify-content: space-around;
}

@media (min-width: 320px) and (max-width: 900px) { 
	.buttons {
	display: block;
	}

	header {
	padding: 20px 20px;
	}

.logo {
	font-size: 20px;
}

header, footer {
	display: block;
}

.cart-item {
	display: block;
}

.item-image {
	width: 70%;
}

.cart-item {
    font-size: 15px;
}

.cart-item div {
    margin-bottom: 12px;
}

menu {
display: none;
}
}