@import url('https://fonts.googleapis.com/css?family=Economica:400,400i,700,700i');

:root {
	--first-color: #333;
}

body,
a {
	color: var(--first-color);
}

body {
	font-family: economica, Impact, Haettenschweiler, 'Franklin Gothic Bold',
		'Arial Black', sans-serif;
}
h1 {
	font-size: 69px;
	text-align: center;
}
.subtitle {
	text-align: center;
}
a:hover {
	text-decoration: none;
}

nav {
	width: 100%;
	max-width: 550px;
	margin: 0px auto;
}
nav ul {
	width: 100%;
	max-width: 550px;
	display: flex;
	justify-content: space-between;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
nav li {
	padding: 20px;
	height: 80px;
	text-align: center;
}
nav a {
	color: #666;
	text-align: center;
	text-decoration: none;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.painting .nav-link-painting,
.paper .nav-link-paper,
.collage .nav-link-collage,
.digital .nav-link-digital {
	font-weight: 700;
	text-decoration: underline;
}
nav img {
	width: 100%;
	max-width: 50px;
	height: auto;
	margin-bottom: 10px;
	display: block;
}
@media (max-width: 400px) {
	nav ul {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
}

.content-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0px auto;
	width: 100%;
	max-width: 100%;
}
.landing .content-container {
	width: 600px;
}
.landing-img {
	max-width: 100%;
	height: auto;
}

footer {
	width: 100%;
	align-self: flex-start;
	padding: 15px 0px 40px;
	font-size: 18px;
	display: flex;
	justify-content: center;
}
.landing footer {
	justify-content: space-between;
}
footer a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	line-height: 20px;
}
footer img {
	height: 20px;
	width: auto;
	margin-right: 5px;
}
@media (max-width: 400px) {
	footer {
		flex-direction: column;
	}
	footer span {
		padding: 10px 0px;
	}
}

main {
	width: 100%;
}
section .thumbs {
	width: 100%;
	display: flex;
	gap: 15px;
	overflow: scroll;
}
section .thumbs h4 {
	font-weight: 400;
	margin-top: 10px;
}
section img {
	height: 300px;
	width: auto;
}

/* digital page */
.digital article {
	margin-bottom: 40px;
}
video {
	max-width: 100%;
	height: auto;
}

/* landing page */
.marquee {
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	background-color: black;
	color: white;
}
.marquee span {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 15s linear infinite;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 18px;
	letter-spacing: 0.05em;
}
@keyframes marquee {
	0% {
		transform: translate(-100%, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}
