@charset "UTF-8";
/* CSS Document */
body, html{
	height: 100%;
	margin: 0;
}

.container img {
	margin: 10px 0px 10px 0px;
}

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;
	
}

/*scroll button*/
#btnScrollToTop{
	position: fixed;
	right: 20px;
	bottom: 15px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ffb511;
	border: none;
	color: aliceblue;
	outline: none;
	cursor: pointer;
	z-index: -1;
	
	
	
	animation-name: appear;
	animation-timeline: scroll(y);
}

#btnScrollToTop:active{
	background: #d5e4c0;
}

/* navigatio bar */
.topnav{
	margin-left: auto;
}

.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-image: url("../images/background_catrplr.jpg");
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main-body > h4 {
	width: 280px;
	padding: 1.5rem 2rem;
	border-radius: 1rem;
	position: absolute;
	top: 15; 
	left: 0;
	right: 0;
	margin-inline: auto;
	transition: 1s 1s;
	background-color: rgba(255, 255, 255, 0.2); 
	backdrop-filter: blur(20px);
}

.menu-button {
	display: none;
	
	
}

/* media size for nav bar */
@media(max-width:800px) {
	.hideOnMobile {
		display: none;
	}
	
	.menu-button {
		display: inline;
	}
	
	.topnav-sidebar {
		display: none;
}
}
/* media size*/
@media(max-width:1350px){
	.artist-statement {
		align-content: center;
		width: 80%;
		margin: 3rem 6rem 1rem 6rem;
		
}
}

@media(max-width: 450px){
	.container img {
		width: 300px;
		margin-left: -5px;
	}
	
	a.menu-button{
		
		margin: 25px;
	}
	.artist-statement {
	margin-left: auto;
	margin: 5em 1.25em 2.5em 5em; 
	width: 90%;
	
}
}

@media(max-width: 375px){
	.container img {
		width: 270px;
		margin: -5;
	}
	
	a.menu-button{
		
		margin: 25px;
	}
}

@media(max-width: 320px){
	.container img {
		width: 230px;
		margin: -5;
	}
	.main-body > h4 {
		width: 200px;
}
	
}

/*animation for scroll button*/
@keyframes appear {
	0%{
		oppacity: 0;
		display: none;
		position: fixed;
		z-index: 4;
	}
	7%{
		oppacity: 0;
		display: none;
	}
	7.5%{
		oppacity: 1;
		display: block;
	}
	100%{
		opacity: 1;
		display: block;
		position: fixed;
		z-index: 4;
	}
}

