#collection{
	display: flex;
	flex-direction: column;
	align-items: center;
}

#collection-inner{
	width: 80%;
	color: #fff;
}

#collection-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
	box-sizing: border-box;
	justify-content: flex-start;
	gap: 20px;
}

#collection-grid > img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
	height: 100%;
}

#upload-form{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

#upload-image-btn{
	border: none;
	padding: 7px 15px;
	border-radius: 5px;
	outline: none;
}

@media only screen and (max-width: 960px){
	#collection-grid{
		grid-template-columns: 100%;
	}
	#collection-grid > img{
		height: unset;
	}
	#upload-form{
		flex-direction: column;
	}
}