@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

*, body {
	margin: 0;
	padding: 0;
}

body {
	overflow-x: hidden;
	background-color: #242629;
}

.prompt {
	background-color: #242629;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	padding-top: 20px;
	padding-bottom: 20px;
}

.disabled:hover {
	cursor: not-allowed;
}

.gallery {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
  }

.gallery .gallery-item:hover{
	filter: grayscale(30%);
	transform: scale(1.01);
}

.gallery-item {
	width: auto;
	min-height: 350px;
	height: auto;
	background-color: black;
	background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
	box-shadow: inset 0px -80px 20px 0px rgba(0, 0, 0, 0.65);
	opacity: 0.95;
	display: flex;
	align-items:end;
	justify-content: start;
}

.item-elements {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	font-family: 'Montserrat', sans-serif;
	color: white;
	display: grid;
	grid-template-columns: repeat(3,  1fr);
}

.items-left {
	grid-column: span 2 / span 2;
}

.item-heading {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 3px;
}

.item-description {
	font-size: 12px;
}

.items-right {
	/* grid-column: span 1 / span 1; */
	display: flex;
	align-items:center;
	justify-content:end;
}

.item-like {
	display: flex;
	align-items: center;
	justify-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.likes {
	font-size: 20px;
}

.like {
	display: flex;
	align-items: center;
	justify-items: center;
}

.fa-heart {
	font-size: 20px;
	color: red;
	cursor: pointer;
  }

.fa-heart-o {
	font-size: 20px;
	color: white;
	cursor: pointer;
  }

  
  
  @media (min-width: 768px) {
	.gallery {
	  grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item {
		box-shadow: inset 0px -70px 30px 0px rgba(0, 0, 0, 0.65);
	}
  }
