 @import url('https://fonts.cdnfonts.com/css/graffiti-font');
 
 body {
      font-family: Verdana, sans-serif;
      margin: 0;
      padding: 0;
	  background:url(pic/brick.avif);
}

header {
	background: linear-gradient(90deg, rgba(162,34,118,1) 0%, rgba(128,117,223,1) 18%, rgba(12,29,115,1) 37%, rgba(59,0,131,1) 55%, rgba(0,134,255,1) 67%, rgba(0,219,255,1) 83%);
	color: #00ff24;
	padding: 10px;
	text-align: center;
	font-family:'Graffiti font', sans-serif;
	opacity:0.8;
	font-size:30px;
	position:absolut;
	
}

section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
}

.product {
	margin: 10px;
	padding: 15px;
	width: 250px;
	background-color: white;
	transform:rotate(5deg);
}

button {
	background-color: DeepSkyBlue;
	color: #fff;
	padding: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: hotpink;
}
.cart {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: grey;
  transition: 0.1s;
  cursor: pointer;
  position: absolute; 
  top: 50px; 
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
  padding: 15px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}/* корзинка */
.cart:hover {
  transform: scale(1.1);
}
.cart__num {
  position: absolute;
  background-color: red;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  top: -5px;
  right: -5px;
}/* счетик товаров */

footer {
	background: linear-gradient(90deg, rgba(162,34,118,1) 0%, rgba(128,117,223,1) 18%, rgba(12,29,115,1) 37%, rgba(59,0,131,1) 55%, rgba(0,134,255,1) 67%, rgba(0,219,255,1) 83%);
	color: #fff;
	padding: 10px;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	opacity:0.8;
}
	