* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: inherit;
	max-width: 100%;
	min-width: 320px;
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	margin: 0 auto;
	text-align: center;
	font-size: .75rem;
	line-height: 2.5;
	padding-bottom: 2rem;
}

h1 {
	font-family: "Syne Mono", monospace;
	font-weight: 400;
	font-style: normal;
	margin: .5rem 0;
}

a {
	text-decoration: none;
	color: #000000;
}

main {
	padding: 2rem;
}

.image {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
}

.nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5rem 1rem;
	background-color: #f5f5f5;
}

.artwork-thumbnail {
	width: 70%;
	padding: 1rem;
}


.modal{
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
}

.modal-content {
	top: 70px;
	left: 0;
	position: absolute;
	width: 100%;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}

.close-btn {
	position: relative;
	z-index: 9999;
	top: 5px;
	color: #fff;
	margin-top: 10px;
	cursor: pointer;
	font-weight: bold;
	font-size: 20px;
}

.about-content, .contact-content {
	padding-top: 2rem;
}

@media screen and (min-width: 480px) {
	.top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: .5rem 1rem;
		background-color: #f5f5f5;
		
	}
	.nav {
		width: 50%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: .5rem 1rem;
		background-color: #f5f5f5;
	}

	/* .content-section {
		display: grid;
		grid-template-columns: repeat(1fr, 1fr);
	} */

	.about-content {
		width: 50%;
		margin: 0 auto;
	}

	.artwork-thumbnail {
		width: 30%;
		padding: 1rem;
	}

	.modal {
		width: 100%;
		height: 100%;

	}

	.modal-content {
		position: fixed;
		max-width: 100%;
		max-height: 90vh;
		overflow-y: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

