body {
  font-family: 'Quicksand', sans-serif;
	background:url("Content/BG-Shop.png");
	background-size: cover;
}

#tienda {
	justify-content: center;
width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
h1{
	margin-top: 100px;
	color:yellow;
	font-size: 50px;
	text-align: center;
}
h3{
	color:yellow;
	margin-left: 10%;
}
h2{
	color:yellow;
	margin-left: 10%;
}

.producto {
  border: 1px solid black;
  padding: 10px;
	height: auto;
  width: calc(33.333% - 40px);
  box-sizing: border-box;
  text-align: center;
	border-radius: 15px;
background: rgb(62,37,143);
background: linear-gradient(0deg, rgba(62,37,143,1) 0%, rgba(9,9,121,1) 11%, rgba(0,212,255,1) 100%);
	box-shadow: 0px 8px black;
}
.producto:hover{
	 border: 1px solid black;
  padding: 10px;
	height: calc(auto - 8px);
  width: calc(33.333% - 40px);
  box-sizing: border-box;
  text-align: center;
	border-radius: 15px;
background: rgb(62,37,143);
background: linear-gradient(0deg, rgba(62,37,143,1) 0%, rgba(9,9,121,1) 11%, rgba(0,212,255,1) 100%);
	margin-top: 8px;
	box-shadow: 0px 0px black;
}

.producto img {
  height: 150px;
	width: auto;
  cursor: pointer;
	border-radius: 10px;
}

.producto h3, .producto p {
  margin: 1px 0;
	padding: 0;
	color:yellow;
}

.modal {
	
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal img{
	width: 250px;
	height: auto;
	border-radius: 15px;
}
.modal h2, .modal p{
	margin: 0;
	color: yellow;
}
.modal-content {
	border-radius: 50px;
  background-color:rgba(77,161,168,1.00);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  position: relative;
	box-shadow: 0px 8px black;
}

.close {
	color:white;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
}
button {
	border-radius: 10px;
	border:hidden;
	background-color:aquamarine;
	color: black;
	padding: 5px;
	box-shadow: 0px 5px black;
}
button:hover{
	cursor:pointer;}

@media screen and (max-width:1340px)
{
	body{
		background-size: auto ;
		
	}
}
