	.project-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	}
		.project-grid > .project-container{
		display: grid;
		position: relative;
		width: 100%;
		padding-top: 100%;
		}
			.project-container > a.project{
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0;
			background-repeat: no-repeat;
			background-size: cover;
			}
				.project-container > a.project > img{
				height: 100%;
				width: 100%;
				}
				.project-container > a.project:hover > img{display:none;}