@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
	padding: 0;
	margin:0;
	font-family: 'Montserrat',sans-serif;
	box-sizing: border-box;
	font-size: 1rem;
}
body {
	background: #fff;
}
img {
	height:100%;
	width:100%;
	object-fit: cover;
}
section {
	background: #fff;
	position: relative;;
	min-height: 100vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0px 0;
}
.container {
	background: #fff;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	margin-top: 70px;
	/*box-shadow: 0 0 61px 7px #5e849c40;*/
	padding: 30px 20px;
	border-radius: 20px;
	text-align: center;
}
.header{
	display: flex;
	align-items:center;
	justify-content: space-around;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	background: #fffffff0;
	border-bottom: 1px solid #e1dada;
}
.header h1{
	font-size:40px;
	font-weight:900;
	letter-spacing: -2px;
	cursor: pointer;
	color: #222;
}
form {
	position: relative;
	margin-top: 20px;
	width: 80%;
	max-width: 300px;
}
input {
	border:none;
	margin-bottom: 10px;
	font-size: 20px;
	outline: none;
	background: #fff;
	color: gray;
	width:100%;
	padding: 10px 5px;
	border-radius: 5px;
border: 1px solid #80808029;
}
input::placeholder {
	opacity: 0.5;
	font-weight: 500;
	background: #fff;
	color: gray;
	padding: 10px 5px;
	border-radius: 1rem;
	outline: none;
}
form ion-icon {
	position: absolute;
	right: 5px;
	top: 10px;
	opacity:0.5;
	color: gray;
	font-size:20px;
}
.gallery {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
	margin-top:0px;
	grid-gap: 20px;
}
.item {
	width: 100%;
	height:350px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: .3s ease box-shadow;
}
.item:hover {
	box-shadow: 0px 0px 20px 3px #00000042;
}
.item h3 {
	width: 100%;
	position: absolute;
	background: #00000040;
	padding: 20px;
	color: aliceblue;
	bottom: -70px;
	left: 0;
	font-weight: 300;
	transition: .4s ease-in-out bottom;
	font-size:20px;
}
.item:hover h3 {
	bottom: 0;
}
.load-more {
	display: inline-block;
	margin-top: 30px;
	padding: 20px 50px;
	background: black;
	font-size: 15px;
	border-radius: 4px;
	text-decoration: none;
	text-transform: uppercase;
	color:white;
	cursor: pointer;
	font-weight: 500;

}
@media only screen and (min-width: 900px){
	.container {
		max-width: 1160px;
		padding: 100px;
	}
	.header{
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
	}
	.header h1 {
		font-size: 50px;
	}
	input {
		font-size: 24px;
		width: 100%;
	}
	form ion-icon {
		font-size: 24px;
	}
	.gallery {
		grid-gap:30px;
	}
}
@media only screen and (max-width: 550px){
	.header h1 {
		font-size: 35px;
	}

}