@charset "UTF-8";

body{
	/*background-image: url("Images/bgfabric.jpg");*/
	background-size: cover;
	background-image: url("Images/blueCheckeredBG.jpg");
	
}


h1 {
	text-align: center;
	font-size: 60px;
}

h2 {
	font-size: 35px;
}

p{
	font-size: 20px;
}

/* Apply this rule to multiple page s or elements */
.blackborder {
	border-style: solid;
	border-width: 4px;
	border-color: #C4A484;
	border-radius: 5px;
}

/* Styling the bookshelf with outer borders and gaps between the links*/

.bookshelf {
	
	display: flex;
	justify-content: center;
	align-items: flex-end; /* makes the books touch the bottom of the shelf */
	gap: 1.5px;
	margin: 40px;
	padding: 20px;
	border-top: 8px solid #4b2e2e;
	border-bottom: 12px solid #3b1f1f;
	background: #d6b27d;
	height: 450px;
	
}

.book {
	padding: 15px 5px;
	background: #fff5d1;
	border: 2px solid #333;
	border-radius: 3px;
	text-decoration: none; /* gets rid of the link type look */
	font-weight: bold;
	color: #222;
	height: 300px;
	width: 150px;
	
}

.floatright {
	
	float:right;
	
}

.clearfix {
	
	overflow: auto;
	
}

ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	background-color: #0077be;	
	overflow: hidden;
	
}

ul li {
	float: left;
}

ul li a {
	
	color: white;
	text-decoration: none;
	padding: 14px 16px;
	display: block;
	font-family: "DynaPuff", system-ui;
  	font-weight: 400;
  	font-style: normal;
	
}

ul li a:hover {
	background-color: #111111
}

.darkBlueBG {
	background-color: rgba(100,149,237);
	}

.centerSpace {
	text-align: center;
	padding:20px;
	margin: 40px;
}

.marginRule {
	margin: 40px;
	padding:20px;
	padding-top: 3px;
}
/* From: https://fonts.google.com/selection */
.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}
/* From: https://fonts.google.com/selection */
.dynapuff-regular {
  font-family: "DynaPuff", system-ui;
  font-weight: 400;
  font-style: normal;
}

.transparent {
  mix-blend-mode: multiply; /* This will make the white areas of the image transparent */
  opacity: 100%;
}

.textCenter {
	margin-top: 100px;
	margin-right: 40px;
	font-size: 60px;
}
/*https://www.w3schools.com/howto/howto_css_parallax.asp*/

.parallax {
  /* The image used */
  background-image: url("351Shadow.jpg");

  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Carousel container */

.carousel {
	width: 100%; /*Full width of parent/container*/
	max-width: 1000px; /*Optional max width*/
	overflow: hidden; /* hide overflow slides */
	margin: auto; /* center carousel */		
}

/* Slides container - row of images */
.slides{
	display:flex;
	transition: transform 0.5s ease;
}

.slides img {
	width: 100%;
	height: auto;
	flex-shrink: 0; /*prevent images from shrinking */
}




