* {
  box-sizing: border-box;
}

.wrapper {
    max-width: 90%;
    margin: 0 auto;
}

body {
	font-family: "system-ui","Helvetica", sans-serif;
	font-size: 18px;
	line-height: 26px;	
	font-weight: 300;
}

a:link, a:visited {
	color: #000;
	text-decoration: none;
	font-weight: 300;
} 
	
a:hover {
	font-weight: 500;
}

.header {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1rem;
     align-items: start;
	 margin: 0 auto;
	 margin-bottom: 4rem;
	 padding: 2rem 3rem 2rem;

}

.title {
	font-family: "Literata", serif;
  	font-size: 60px;
	line-height: 72px;
	letter-spacing: .25px;
  	font-style: italic;
	text-align: left;
	
	
	
		& a:link, a:visited {
		color: #000;
		text-decoration: none;
		font-weight: 300;
		} 
	
		& a:hover {
		font-weight: 300;
		}
}

.subtitle {
	font-size: 24px;
	line-height: 36px;
	font-style: normal;
	text-align: left;
}

.note {
	padding-top: 1.5rem;
	text-align: left;
	font-size: 16px;
	letter-spacing: .5px;
	line-height: 26px;
}

.nav {
	padding-top: 1.5rem;
	font-family: "system-ui","Helvetica", sans-serif;
  	font-size: 14px;
	letter-spacing: .5px;
	line-height: 26px;
	text-transform: uppercase;
	font-weight: 300;
	text-align: right;

	
	& a:link, a:visited {
		color: #000;
		text-decoration: none;
		font-weight: 300;
		} 
	
	& a:hover {
		font-weight: 500;
		}
}

ul {
  	list-style: none;
}

.gallery {
    display: grid;
	place-items: center;
	margin: 5% auto 0;
    grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.gallery-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 3rem;
}

.gallery img,
.gallery-two img {
    filter: drop-shadow(1px 1px 2px gray);
}

.artwork {
	object-fit: cover;
	display: block;
	min-width: 0;
}

.tall {    
	max-height: 500px;
}

.short {    
	max-height: 400px;
}

.caption {
	font-family: "system-ui","Helvetica", sans-serif;
	font-size: 15px;
	line-height: 20px;
	margin: 0 auto;
	margin-top: 90px;
	margin-bottom: 50px;
	padding: 10px;
	text-align: left;
	width: 450px;
	}

.sold {
	color: red;
	margin-left: -20px;
	vertical-align: 0px;
	}

.strong{
	font-weight: 500;
}

.text {
	margin: 0 auto;
	width: 42rem;
}

.text-columns {
	margin: auto;
	margin-top: 3%;
	column-count: 2;
	column-gap: 3.5rem;
	widows: 3;
	max-width: 60%;
	padding-bottom: 3%;
}

.instructions {
	background: #fff8db;
	padding: 20px 30px;
	width: 27rem;
	font-family: "Andale Mono", "Monaco", monospace;
	font-size: 14px;
	line-height: 24px;
	margin: -2rem auto 2rem;

}

.heading {
	font-size: 24px;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}

#name {
	font-family: "system-ui", "Helvetica", sans-serif;
	font-weight: 500;
	font-size: 16px;
}

.desc {
	font-family: "Literata", serif;
	font-size: 17px;
	font-weight: 300;
	line-height: 30px;
}

.footer {
	padding: 1.5rem;
	font-family: "system-ui","Helvetica", sans-serif;
  	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-weight: 300;
	text-align: center;
}


@media (min-width: 1400px) {
	 .header {
		 max-width: 80%;
	}
	
	.tall {    
		max-height: 750px;
	}

	.short {    
		max-height: 550px;
	}
}
	
@media (max-width: 600px) {
	
	.wrapper {
    	max-width: 100%;
}
	
	.header {
		grid-template-columns: minmax(0, 1fr);
		max-width: 100%;
		text-align: center;
		padding: 2rem;
}

	.note {
		display: none;
}

	.title {
		text-align: center;
		font-size: 54px;
}
	.subtitle {
		width: auto;
		font-size: 18px;
		line-height: 28px;
		padding: 0 2rem 0;
}
	
	.nav {
		justify-self: center;
		grid-template-columns: minmax(0, 1fr);
		flex-direction: row;
		padding: 0;
}
	
	ul li { 
		display: inline;
		margin-left: 5px;
		margin-right: 5px;
		
}
	
	ul {
		padding-inline-start: 0px;
		margin-block-start: 0px;
	    margin-block-end: 0px;
		text-align: center;
		font-size: 13px;
}

	
   .gallery, .gallery-two {
	   display: grid;
	   grid-template-columns: minmax(0, 1fr);
	   margin: 1rem auto 0;
	   gap: 3rem;
	   
}

	.image-container, .artwork {
		object-fit: cover;
		min-width: 0;
		grid-template-columns: minmax(0, 1fr);
}
	
	.tall, .short {    
		max-width: 100svh;
}

	.caption {
		grid-template-columns: 1fr;
        gap: 1rem;
		max-width: 90%;
		justify-self: center;
}

	.instructions {
		width: 100%;
		font-size: .8em;
		line-height: 1.2em;
		margin: 0 auto;
}
	
	.text-columns {
		column-count: 1;
		grid-template-columns: 1fr;
		max-width: 100%;
}
		
	.text {
		grid-template-columns: 1fr;
		margin: 0 auto;
		width: 100%;
		padding: 1rem;
}
	
	.desc {
		font-size: 16px;
		line-height: 26px;
		font-weight: 300;
}
	
	.easyzoom--overlay .easyzoom-flyout {
        display: none !important;
    }
	
    .easyzoom a {
        pointer-events: none;
        cursor: default;
    }

}