Wh/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*End of the CSS Reset*/

/*Webpage structure*/
body{
	background: url('imgs/background.PNG') no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
}
 * { box-sizing: border-box;}
#wrapper {
	max-width: 1900px;
	margin: 0 auto;
	padding-top: 10px;
}
.topBar{
	display: flex;
  	justify-content: center;
	background: #000;
	margin-bottom: 10px;
}
.amatic-sc-bold {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 27px;
}
/*Navigation bar*/
h1 {
	text-decoration: none;
	font-size: 0.1em;
	color: black;
	text-align: center;
}
.resizeLogo {
	display: block;
	max-height: 100px;
	margin-top: 5px;
	margin-right: 35px;
	float: right;
}
nav {
	height: 115px;
}
nav ul {
	list-style: none;
}
nav ul li {
	float: left; 
	margin-top: 10px;
	margin-left: 50px;
}
nav a {
	text-decoration: none;
	font-size: 1.3em;
	font-weight: 300;
	color: black;
	text-align: center;
	padding: 30px;
}
#About { 
	display: block;
	background: url('imgs/navIcons.PNG') no-repeat 5px -10px;
	background-size: 850px;
	width: 160px;
	height: 100px;
}
#Making{
	display: block;
	background: url('imgs/navIcons.PNG') no-repeat -165px -10px;
	background-size: 850px;
	width: 160px;
	height: 100px;
}
#Gallery{
	display: block;
	background: url('imgs/navIcons.PNG') no-repeat -335px -10px;
	background-size: 850px;
	width: 160px;
	height: 100px;
}
#Faq{
	display: block;
	background: url('imgs/navIcons.PNG') no-repeat -505px -10px;
	background-size: 850px;
	width: 160px;
	height: 100px;
}
#Shop{
	display: block;
	background: url('imgs/navIcons.PNG') no-repeat -675px -10px;
	background-size: 850px;
	width: 160px;
	height: 100px;
}
#About:hover { 
	background-position: 3px -139px;
}
#Making:hover{
	background-position: -167px -139px;
}
#Gallery:hover{
	background-position:  -337px -139px;
}
#Faq:hover{
	background-position: -507px -139px;
}
#Shop:hover{
	background-position:  -677px -139px;
}
#About:active { 
	background-position: 5px -268px;
}
#Making:active{
	background-position: -165px -268px;
}
#Gallery:active{
	background-position:  -335px -268px;
}
#Faq:active{
	background-position: -505px -268px;
}
#Shop:active{
	background-position: -675px -268px;
}
/* Body sections */
#HomeBody{
	height: 990px;
	width: 100%;
    overflow: hidden;
    display: flex;
  	justify-content: center;
}
.video {
	scale: 150%;
}
#faqBody, #GalleryBody, #AboutBody, #ShopBody, #MakingBody {
	display: flex;
	justify-content: center;
}
.gridlayout{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	grid-auto-rows: minmax(100px, auto);
}
.left {
	display: block;
	float: left;
}
.middle {
	display: block;
	background: #DDF4FF;
	padding: 10px;
	margin: 10px;
}
#AboutBody .middle, #GalleryBody .middle, #ShopBody .middle , #MakingBody .middle{
	background-color: transparent;
	width: 100vw;
}
.right {
	display: block;
	float: right;
	transform: scaleX(-1);
}
h2{
	background:  #F8FDFF;
	display: inline-flex;
	width: 100%;
	height: auto;
	font-size: 1.1em;
	color: black;
	padding: 10px;
	font-family: "Monda", sans-serif;
  	font-weight:700;
  	font-style: normal;
}
.aboutImg{
	height: 700px;
}
.bubble {
	object-fit: cover;
	width: 120px;
	height: 100%;
}
.clearWhale {
	height: 300px;
	padding-left: 10px;
}
figcaption {
	font-family: "Monda", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	padding-left: 10px;
	padding-top: 5px;
}
p {
	padding: 10px;
	padding-bottom: 20px;
	font-family: "Monda", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}
.aboutSection {
	background: #DDF4FF;
	padding: 50px;
	margin-top: 120px;
	margin-bottom: 120px;
	grid-column: 2;
	grid-row: 1;
}
.aboutSection p {
	line-height: 22px;
}
.galleryImages {
	display: flex;
	flex-wrap: wrap;
  	justify-content: space-around;
}
.galleryImages img{
	object-fit: cover;
	height: 400px;
	width: auto;
	margin: 10px;
	filter: drop-shadow(0 0 10px #008B8B);
}
.banner {
	grid-column: 1/3;
	grid-row: 1;
	background: url('imgs/banner.jpeg') no-repeat;
	background-position: center center;
	background-size: 90%;
	height: 700px;
}
.shopImages {
	display: flex;
  	justify-content: center;
  	background: #DDF4FF;
}
.shopImages img {
	object-fit: cover;
	border-radius: 10px;
	width: 500px;
	height: 500px;
	margin: 20px;
}
#OG, #KC {
	grid-row: 3;
	background: #DDF4FF;
}
.shopText h2 {
	justify-content: center;
	font-size: 1.3em;
}
.shopText p {
	padding-bottom: 0px;
}
.priceTag {
	text-align: center;
	font-size: 1.2em;
}
form {
	font-family: "Monda", sans-serif;
  	font-weight:400;
  	font-style: normal;
  	margin: 15px;
  	margin-bottom: 5px;
  	display: flex;
}
form div {
	flex: 50%;
}
select {
	margin-bottom: 5px;
}
input {
	font-family: "Monda", sans-serif;
  	font-weight:400;
  	font-style: normal;
	margin: 5px;
	margin-top: 0px;
	margin-bottom: 15px;
}
/* from:https://www.w3schools.com/howto/howto_js_slideshow.asp  */
/* Slideshow container */
.slideshow-container {
  display: flex; 
  justify-content: center;
  align-items: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  width: auto;
  height: 45px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-family: "Monda", sans-serif;
  font-weight:400;
  font-style: normal;
  font-size: 20px;
  padding: 8px 12px;
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.8);
  margin: 10px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-family: "Monda", sans-serif;
  font-weight:400;
  font-style: normal;
  font-size: 15px;
  padding: 8px 12px;
  background-color: rgba(0,0,0,0.8);
  margin: 10px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Footer */
footer{
	background: black;
	display: flex;
	column-gap: 1275px;
	padding: 10px;
	margin-bottom: 10px;
}
hr {
	padding: 5px;
	background: black;
	border: 1px solid black;
}
footer ul li{
	color: white;
	width: max-content;
	font-family: "Monda", sans-serif;
  	font-weight:400;
  	font-style: normal;
}
footer a {color: #7FFFD4}
footer a:hover{color: #00CED1}
footer a:visited {color: #5F9EA0}
footer img {
	margin-left: auto;
	height: 100px;
}
/* Responsive design adjustments */
@media only screen and (max-width: 1200px) {
    /* Style adjustments for ipad horizontal*/
    #wrapper {
		max-width: 1150px;
	}
	#HomeBody{
		height: 800px;
	}
	.video {
		scale: 130%;
	}
    footer{
		column-gap: 525px;
	}
	#About{
		background-position: -2px -4px;
		background-size: 700px;
		width: 120px;
		height: 100px;
	}
	#Making{
		background-position: -143px -4px;
		background-size: 700px;
		width: 120px;
		height: 100px;
	}
	#Gallery{
		background-position: -283px -4px;
		background-size: 700px;
		width: 120px;
		height: 100px;
	}
	#Faq{
		background-position: -425px -4px;
		background-size: 700px;
		width: 120px;
		height: 100px;
	}
	#Shop{
		background-position: -565px -4px;
		background-size: 700px;
		width: 120px;
		height: 100px;
	}
	#About:hover{
		background-position: -4px -109px; /* 5, -10*/
	}
	#Making:hover{
		background-position: -145px -109px;
	}
	#Gallery:hover{
		background-position: -285px -109px;
	}
	#Faq:hover{
		background-position: -427px -109px;
	}
	#Shop:hover{
		background-position: -567px -109px;
	}
	.galleryImages img{
		height: 250px;
	}
	.aboutImg{
		width: 600px;
		height: auto;
		margin-left:120px;
	}
	.aboutSection {
		grid-column: 1;
		grid-row: 2;
		margin-left:120px;
		margin-top: 5px;
		margin-bottom: 30px;
	}
	.banner {
		background-size: 90%;
		height: 500px;
	}
	.shopImages img {
		width: 380px;
		height: 380px;
		margin: 10px;
	}
}
@media only screen and (max-width: 840px) and (orientation : portrait ){
    /* Style adjustments for ipad vertical?*/
	#wrapper {
		max-width: 790px;
	}
	.video {
		scale: 110%;
	}
	footer{
		column-gap: 150px;
	}
	.topBar{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		
	}
	.resizeLogo {
		display: block;
		max-height: 100px;
		margin-top: 5px;
		margin-right: 0px;
		float: none;
	}
	.navBar {
		display: flex;
  		flex-direction: row;
  		justify-content: center;
	}
	nav {
		height: 100px;
	}
	nav ul li {
		margin-top: 10px;
		margin-left: 25px;
		margin-right: 25px;
	}
	#About{
		background-position: -6px 0px;
		background-size: 650px;
		width: 105px;
		height: 90px;
	}
	#Making{
		background-position: -130px 0px;
		background-size: 650px;
		width: 105px;
		height: 90px;
	}
	#Gallery{
		background-position: -260px 0px;
		background-size: 650px;
		width: 105px;
		height: 90px;
	}
	#Faq{
		background-position: -400px 0px;
		background-size: 650px;
		width: 105px;
		height: 90px;
	}
	#Shop{
		background-position: -528px 0px;
		background-size: 650px;
		width: 105px;
		height: 90px;
	}
	#About:hover{
		background-position: -8px -98px; /* 5, -10*/
	}
	#Making:hover{
		background-position: -132px -98px;
	}
	#Gallery:hover{
		background-position: -262px -98px;
	}
	#Faq:hover{
		background-position: -402px -98px;
	}
	#Shop:hover{
		background-position: -530px -98px;
	}
	.aboutImg{
		width: 500px;
		height: auto;
		margin-left:45px;
	}
	.aboutSection {
		padding: 30px;
		margin-left:45px;
		margin-top: 5px;
		margin-bottom: 30px;
	}
	.clearWhale {
		padding-left: 120px;
	}
	.bubble {
		width: 80px;
	}
	.galleryImages img{
		height: 200px;
	}
	.banner {
		background-size: 80%;
		height: 300px;
	}
	.shopImages img {
		width: 260px;
		height: 260px;
		margin: 10px;
	}
}
@media only screen and (max-width: 840px) and (orientation: landscape ){
    /* Style adjustments for iphone horizontal?*/
    *{-webkit-text-size-adjust: 100%}
    body{
    	background-color: black;
    	background-image: url('imgs/background.PNG') no-repeat;
		background-position: center;
		background-size: cover;
		width: 100%;
    }
     #wrapper {
		max-width: 790px;
	}
	#HomeBody{
		height: 500px;
	}
	.video {
		scale: 150%;
	}
	footer{
		column-gap: 250px;
	}
	.bubble {
		width: 80px;
	}
	.topBar{
		justify-content: left;
		align-items: center;
		width: 100%;
		height: auto;
	}
	.resizeLogo {
		display: block;
		max-height: 80px;
		margin-top: 10px;
		margin-right: 10px;
		float: none;
	}
	.navBar {
		display: block;
	}
	nav {
		height: auto;
	}
	nav a {
		padding: 15px;
		padding-top: 17px;
	}
	nav ul li {
		margin-top: 10px;
		margin-left: 15px;
		margin-right: 20px;
	}
	#About{
		background-position: -8px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#Making{
		background-position: -115px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#Gallery{
		background-position: -226px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#Faq{
		background-position: -340px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#Shop{
		background-position: -450px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#About:hover{
		background-position: -9px -85px;
	}
	#Making:hover{
		background-position: -116px -85px;
	}
	#Gallery:hover{
		background-position: -227px -85px;
	}
	#Faq:hover{
		background-position: -341px -85px;
	}
	#Shop:hover{
		background-position: -451px -85px;
	}
	h2{
		font-size: 1em;
	}
	#AboutBody p, figcaption, .text {
		font-size: 14px;
	}
	#faqBody p {
		font-size: 14px;
		padding-bottom: 15px;
	}
	.numbertext {
		font-size: 13px;
	}
	.aboutImg{
		width: 400px;
		height: auto;
		margin-left:70px;
	}
	.aboutSection {
		padding: 30px;
		margin-left:70px;
		margin-bottom: 20px;
	}
	.clearWhale {
		padding-left: 90px;
	}
	.bubble {
		width: 80px;
	}
	.galleryImages img{
		height: 200px;
	}
	.banner {
		background-size: 80%;
		height: 300px;
	}
	.shopText h2 {
	justify-content: center;
	font-size: 17px;
	}
	.shopText p {
	padding-bottom: 0px;
	}
	.priceTag {
	text-align: center;
	font-size: 15px;
	}
	form {
		font-size: 12px;
  		margin: 10px;
	}
	.shopImages img {
		width: 230px;
		height: 230px;
		margin: 10px;
	}
	footer ul li{
	font-size:12px;
	}
	footer img {
	height: 80px;
	}
}
@media only screen and (max-width: 400px) {
    /* Style adjustments for iphones, vertical*/
    #wrapper {
		max-width: 380px;
	}
	#HomeBody{
		height: 300px;
	}
    footer{
		column-gap: 0px;
	}
    footer ul li{
	font-size:10px;
	}
	footer img {
	margin-top: 5px;
	height: 60px;
	}
	nav {
		height: auto;
		padding-bottom: 2px;
	}
	nav a {
		padding: 15px;
		padding-top: 17px;
	}
	nav ul li {
		margin-top: 0px;
		margin-left: 15px;
		margin-right: 20px;
	}
	#About{
		background-position: -8px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
		margin-left: 20px;
	}
	#Making{
		background-position: -115px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#Gallery{
		background-position: -226px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#Faq{
		background-position: -340px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
		margin-left: 75px;
	}
	#Shop{
		background-position: -450px -3px;
		background-size: 550px;
		width: 80px;
		height: 70px;
	}
	#About:hover{
		background-position: -9px -85px;
	}
	#Making:hover{
		background-position: -116px -85px;
	}
	#Gallery:hover{
		background-position: -227px -85px;
	}
	#Faq:hover{
		background-position: -341px -85px;
	}
	#Shop:hover{
		background-position: -451px -85px;
	}
	.aboutImg{
		width: 350px;
		height: auto;
		margin-left:12px;
	}
	.aboutSection {
		padding: 30px;
		margin-left:12px;
		margin-bottom: 0px;
	}
	.left, .right, .bubble {
		display: none;
	}
	.galleryImages img{
		height: 200px;
	}
	.clearWhale {
	height: 300px;
	padding-left: 0px;
	}
	.banner {
		background-size: 100%;
		height: 200px;
	}
	.shopImages {
		display: block;
		margin-left: 20px;
		width: 300px;
		padding: 10px;
	}
	#OG{
		grid-row: 3;
		margin-left: 20px;
		width: 300px;
	}
	#KCimg {
		grid-row: 4;
	}
	#KC{
		grid-row: 5;
		margin-left: 20px;
		width: 300px;
	}
	.prev, .next {
 	 height: 30px;
  	padding: 5px;
	}
	.dot {
		height: 10px;
		width: 10px;
	}
}