@charset "UTF-8";
/* monkeystyle.css */
/* basic setting */

html::before {
  content: ' ';
  display: block;
  background-image: url(./images/background_img_626.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100vh;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: -10; // This is pretty important.
}

html {
	box-sizing: border-box;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	background-color: #f8f8ff;
	color: rgba(0, 0, 0, 0.7);
	font-family: 'Playfair Display', serif;
}


header {
	text-align: center;
}

video {
	width: 100%;
}

h1 {
	margin-top: 3rem;
}

h2 {
	margin: 0;
	font-weight: 300;
}

a {
	color: black;
}

ul {
	margin: 1.5rem;
	padding: 0;
}

.nav-ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.nav-li {
	list-style: none;
}

.nav-ul a:link {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.7);
}


.nav-ul a:hover {
	color: black;
}


article {
	margin-top: 2em;
	margin-bottom: 2em;
}

.trpt_banjo_pic {
	width: 50%;
	float: right;
	margin-left: 2rem;
	border-radius: 50px;
}

.paul_picture {
	width: 50%;
	float: left;
	margin-right: 2rem;
	margin-bottom: 1rem;
}

iframe {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
aside {
	clear:both;
	margin-bottom: 2em;
}

.button {
	margin-top: 2em;
}

.container {
	
}

footer {
	background-color: rgba(0, 0, 0, 0.1);
	margin-top: 1rem;
	padding: 1em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}

.copyright {
	margin-left: 1em;
}


/* tablet setting Breakpoint 640px/40em */

@media screen and (min-width: 40em) {
	.container {
		overflow: auto;
	}
	
	.content {
		display: block;
		float: left;
		width: 65%;
		padding: 0 2rem 0 2rem;
	}
	
	aside {
		position: fixed;
		diplay: block;
		margin: 0 0 0 65%;
		width: 35%;
		padding: 15rem 2rem 0 2rem;
	}
}

/* Big screen setting 1280px/80em */

@media screen and (min-width: 64em) {
	.wrapper {
	
		max-width: 64em;
		margin: 0 auto;
	}

	aside {
	left: -4%;
	}
}
























