@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300&display=swap')

* {
	border: 0;
	padding: 0;
	margin: 0;
}

div {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-family: 'Bodoni Moda', serif;
	width: 100%;
	height: 100vh;
}

h2 {
	font-size: 50px;
	background: #fff;
	padding: 8px 24px;
	border-radius: 16px;
}

div#parallax {
	background-image: url(../img/zebra.jpg);
}	

.name {
	font-size: 12vw;
	text-transform: uppercase;
	background: none;
	text-align: center;
	color: #008268;
	text-shadow: 4px 4px #FDDDA4;
}


/*Second page with bio & photo /div */

div#biography {
	background-color: #f5edd7;
}

img {
	max-width: 50%;
	height: auto;
}

img.margot-frame {
	max-width: 600px;
	height: auto;
	padding-left: 2%;
}
#biography p {
	font-size: 2vw;
	font-family: 'Karla', sans-serif;
	font-weight: 300;
	text-transform: lowercase;
	padding: 2%;
	color: #ff758d;
}

/*Third section with quote over books*/

div#quote {
	max-height: 400px;
	background-image: url(../img/books.jpg);
	background-attachment: fixed;
	background-size: cover;
	border-bottom: 2px solid #f5edd7;
}

blockquote {
	font-size: 4vw;
	padding: 3%;
	color: #FDDDA4;
	text-shadow: 2px 4px 4px #000;
}

/*Final section*/

#final {
	max-width: 100%;
	display: flex;
	box-sizing: border-box;
	flex-direction: row;
	color: #008268;
	background-color: #f5edd7;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3Ehoundstooth%3C/title%3E%3Cg fill='%23f99f96' fill-opacity='0.32' fill-rule='evenodd'%3E%3Cpath d='M0 18h6l6-6v6h6l-6 6H0M24 18v6h-6M24 0l-6 6h-6l6-6M12 0v6L0 18v-6l6-6H0V0'/%3E%3C/g%3E%3C/svg%3E");


}

.internalcontainerL {
	flex:1;
	font-family: 'Karla', sans-serif;
	font-size: 12px;
	flex-direction: column;
	justify-content: center;
  	align-items: center;
}

.internalcontainerM {
	flex: 1;
	font-family: 'Karla', sans-serif;
	font-size: 12px;
	justify-content: center;
  	align-items: center;
  	flex-direction: column;
  	
}

.internalcontainerR {
	flex: 1;
	font-family: 'Karla', sans-serif;
	font-size: 12px;
	justify-content: center;
  	align-items: center;
  	flex-direction: column;
}

#final h3 {
	width: 100%;
	text-align: center;
	font-family: 'Bodoni Moda', serif;
	font-size: 20px;
	text-transform: uppercase;
	color: #008268;
}

img.store {
	border: 3px solid #f5edd7;
	outline: 20px solid #f99f96;
}


address {
	width: 100%;
	text-align: center;
	color: #008268;
	display: block;
	padding: 20px;
	font-size: 14px;
	text-transform: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

/*----MEDIA QUERIES-----*/

@media screen and (max-width: 768px) {
  #final {
    flex-direction: column;
    background-color: #008268;
    color:#f5edd7;
    background-image: none; 
    height: auto;
  }

  #final address, {
  	color: #f5edd7;
  }

  #final h3 {
  	color: #f5edd7;
  }
  #biography {
  	flex-direction: column;
  }
  #biography p {
  	font-size: 18px;
  	padding: 10%;
  }

  img.margot-frame {
	max-width: 250px;
	height: auto;
}
  blockquote {
  	padding-bottom: 35%;
  	justify-content: center;
  }

}





