@charset "UTF-8";
/* CSS Document */
body {
	min-height: 100vh;
	margin: 0;
}
h1 {
	flex: 1;
	color: cornflowerblue;
	margin: 15px 0px 0px 25px;
	font-family: courier, monospace; 
	font-size: 60px;
	
}

.subtitle {
	font-family: courier, monospace;
	margin: 0px 0px 25px 25px;
	display: block;
	font-size: 20px;
}

h3 {
	font-family: courier, monospace; 
	color: #008B8B;
	font-size: 40px;
	margin: 0px 0px 0px 0px;
	
	height: 60px;
	width: 100%;
	background-color:#b3bdc7;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

/* navigatio bar */
.topnav a {
	flex: 1;
 	float: right; 
	color: cadetblue;
	text-align: justif;
	padding: 5px 5px;
	margin: 50px 25px 0px 0px;
	text-decoration: none;
	font-size: 25px;
	font-family: courier, monospace;
	font-weight: 300;
	
}

.topnav a:hover {
	color: fuchsia;
}

.topnav-sidebar {
	position: fixed;
	top: 0; 
	right: 0;
	height: 100vh;
	width: 250px;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.topnav-sidebar a:hover {
	color: fuchsia;
}

.topnav-sidebar a {
	color: #68724d;
	font-size: 25px;
	font-family: courier, monospace;
	padding: 5px 5px;
	margin: 15px 25px 15px 25px;
	text-decoration: none;
}

.topnav-sidebar a > span {
	color: #ff48b0;
	font-weight: bolder;
	font-size: 40px;
	cursor: pointer;
}

.topnav-sidebar a > span:hover {
	color: #ffb511;
}

.container {
	display: flex;
}

/* stripped background */
.main-body {

}
.background {
	background-image: linear-gradient(46deg, #b3bdc7 25%, #ffffff 25%, #ffffff 50%, #b3bdc7 50%, #b3bdc7 75%, #ffffff 75%, #ffffff 100%);
	background-size: 8.34px 8.64px;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	z-index: -1;
}


.menu-button {
	display: none;
	height: 29px;
	
}

.artist-statement {
	width: 55%;
	margin: 3rem 6rem 3rem 3rem;
	float: right;
	
}

.main-body img {
	padding: 3rem 3rem 3rem 5rem;
	width: min(335px, 60%);
}

/* media size */
@media(max-width:800px) {
	.hideOnMobile {
		display: none;
	}
	
	.menu-button {
		display: inline;
	}
	
	.topnav-sidebar {
		display: none;
}
}
