h1 {
	margin-bottom:0.5em;
}

	.sub {
		font-size:1em;
		letter-spacing: 0.05em;
		width:100%;
		text-align:center;
		font-weight:500;
		text-transform: uppercase;
		margin-bottom:2em;
	}

.filters {
	text-align: center;
	margin-bottom:2.5%;
}

	.filters a {
		font-size:1.4em;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		text-decoration: none;
		display:inline-block;
		margin:1em;
	}

.items {
	display:grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap:3em;
	margin-bottom:5%;
	margin-top:2.5%;
}

.items a {
	position:relative;
	float:left;
	text-decoration: none;
	transition:all 0.25s ease-in-out;
}

	.image {
		position:relative;
		margin-bottom:1em;
	}

	.cover {
		position:absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background-color:rgba(0,0,0,0.7);
		opacity:0;
		transition:all 0.5s ease-in-out;
		text-align: center;
	}
	
		.cover span {
			position:absolute;
			top:50%;
			transform: translateY(-50%);
			width:100%;
			color:#fff;
			font-size:5em;
			text-align: center;
			left:0;
		}
	
		.items a:hover .cover {
			opacity:1;
		}

	.items a img {
		width:100%;
		border:1px solid #999;
	}
	
	.items a h2 {
		font-size:1.2em;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		font-weight:normal;
	}

.gallery {
	position: relative;
	margin:2% 0 5% 0;
}

	.blank {
		position:absolute;
		width:100%;
		height:100%;
		left:0;
		top:0;
		z-index:10;
	}

.main p {
	font-size:1.5em;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-bottom:1em;
}

.main .body {
	padding: 5% 10%;
}

	.main .body p {
		text-align: center;
	}

	.main .exhibition {
		padding:5% 0;
	}
	
.main .body h2,
.main .body h3,
.main .body h4{
	font-size:2em;
	letter-spacing: 0.05em;
	font-weight:200;
	text-shadow: 1px 1px #999;
	text-decoration: none;
	color:#000;
	text-transform: uppercase;
	margin-bottom:1em;
	text-align: center;
}

	.main td {
		vertical-align: text-top;
		text-align: left;
		padding:1em;
	}
	
	.main .body td p,
	.main .body td h2,
	.main .body td h3,
	.main .body td h4{
		text-align: left;
	}
	
	.celebs {
		column-count: 3;
	}

.main .exhibition {
	padding:5% 0;
}

.main .body.exhibitions {
	text-align: center;
	padding:5% 0;
	display:grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap:1em;
}

	.exhibitions a {
		border:1px solid #000;
		display:inline-block;
		width:100%;
		max-width:100%;
		text-decoration: none;
		vertical-align: top;
	}

	.exhibitions a img {
		width:100%;
		opacity: 1;
		transition: all 0.35s ease-in-out;
	}

	.main .exhibitions a h2 {
		font-family: 'Open Sans', sans-serif;
		text-shadow: none;
		font-size:1em;
		padding:1em;
		margin:0;
		text-decoration: none;
	}

	.exhibitions a:hover h2 {
		text-decoration: underline;
	}

	.exhibitions a:hover img {
		opacity:0.7;
	}

.nfts {
	display:grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap:2em;
	margin-bottom: 5em;
}

	.nft {
		text-decoration: none;
	}

		.nft .image {
			text-align: center;
			border:1px solid #999;
		}

			.nft .image img {
				height:176px;
				object-fit: contain;
				margin:0 auto;
				display: block;
			}

		.nft h2 {
			font-size: 1.2em;
			letter-spacing: .05em;
			text-transform: uppercase;
			font-weight: normal;
		}

@media screen and (max-width:799px){
	.items {
		grid-template-columns: repeat(3,1fr);
		grid-gap:2em;
	}
	
	.main td {
		display:block;
		clear:left;
		width:100%;
	}
	
	.celebs {
		column-count: 2;
	}
}

@media screen and (max-width:699px){

	.main .body.exhibitions {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width:599px){
	.nfts {
		grid-template-columns: repeat(2,1fr);
		grid-gap:1.5em;
	}
}

@media screen and (max-width:499px){
	.items {
		grid-template-columns: repeat(2,1fr);
		grid-gap:1em;
	}
	
	.filters a {
		border:1px solid #eee;
		padding:0.75em;
		font-size:1.2em;
		margin:0.5em;
	}
	
	.celebs {
		column-count: 1;
	}
}

@media screen and (max-width:389px){
	.nfts {
		grid-template-columns: repeat(1,1fr);
		grid-gap:1.5em;
	}

	.main .body.exhibitions {
		grid-template-columns: 1fr;
	}
}