/* Reset / Basic Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Container: Flex layout */
.container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px;
	max-width: 1400px;
	min-height:600px;
	margin-left:auto;
	margin-right:auto;
	

}

/* Left Section */
.left-section {
  flex: 1 1 400px; /* Grows and shrinks, min width 300px */
	min-height:600px;
 margin-right: 20px;
  text-align: center;
		 background-image: url('images/book-image.jpg');
  background-size: cover;
  background-position: 80% 20%;
}

.required-reading {
  font-size: 1.5rem;
  font-weight: bold;
 text-align:center;
	margin-top:2rem;
	display:;
	justify-content: center;
	text-align:center;
}




.book-cover {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.author {
  font-style: italic;
  margin-top: 5px;
}

/* Right Section */
.right-section {
  flex: 2 1 300px; /* Grows more than left section */
  margin-top: 10px;
	max-width:680px;
	padding-left:20px;
}

.right-section h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
	max-width:90%;
}

h2{
  font-size: 1.7rem;
	font-weight:bold;
  margin-bottom: 10px;
  line-height: 1.2;	
	
}

.mysteries ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 10px;
	
}

.mysteries ul li {
 font-size:1.6rem;
	line-height: 2.4rem;
	
}

ul li::marker {
    color: red; /* Change bullet color */
    font-size: 1.1em; /* Adjust bullet size */
}

p{
	font-size:1.4rem;
}


h3{
  font-size: 1.5rem;
	font-weight:bold;
  margin-bottom: 10px;
  line-height: 1.2;	
	
}

.stores {
	
display:flex;
	flex-direction: row;

	justify-content: center;
	
	
  
}

.logos{
	margin-left:20px; margin-right:20px;
}


/*screen is in between cell phone and desktop*/
@media (min-width: 572px) and (max-width: 1200px) {
    /* Your styles here */
    
	
	.left-section {
  flex: 1 1 100%; /* Grows and shrinks, min width 300px */
	min-height:670px;
		max-width:610px;
/*  margin-right: 20px;*/
  text-align: center;
		 background-image: url('images/book-image.jpg');
  background-size: cover;
  background-position: center;
		
}
	
	.container {
  display: flex;
  min-width:630px;
		max-width:520px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px;
	
	margin-left:auto;
	margin-right:auto;
	

}
	
	
	.required-reading {
  font-size: 1.2rem;
  font-weight: bold;
 text-align:center;
	margin-top:2rem;
	display:;
	justify-content: center;
	text-align:center;
	

	
}
	
	
	.stores {
	
display:flex;
	flex-direction: row;
flex-wrap: wrap;
	justify-content: center;
	
	
  
}
	

}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
	   min-width:460px;
  }
  
  .left-section {
    margin-right: 0;
    margin-bottom: 20px;
	  max-width:100%;
	min-height:470px;
	  background-position: 30% 0%;
	  background-size:115% 115%;
	 
  }
	
	.required-reading {
  font-size: 1.2rem;
  font-weight: bold;
 text-align:center;
	margin-top:2rem;
	display:;
	justify-content: center;
	text-align:center;
	

	
}
	
	
	/* Right Section */
.right-section {
  flex: 2 1 300px; /* Grows more than left section */
  margin-top: 10px;
	max-width:680px;
	padding-left:20px;
}

.right-section h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
	max-width:90%;
}

h2{
  font-size: 1.5rem;
	font-weight:bold;
  margin-bottom: 10px;
  line-height: 1.2;	
	
}

.mysteries ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 10px;
	
}

.mysteries ul li {
 font-size:1.4rem;
	line-height: 2.0rem;
	
}

ul li::marker {
    color: red; /* Change bullet color */
    font-size: 1.2em; /* Adjust bullet size */
}

p{
	font-size:1.4rem;
}


h3{
  font-size: 1.5rem;
	font-weight:bold;
  margin-bottom: 10px;
  line-height: 1.2;	
	
}

.stores {
	
display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
  
}

.logos{
	margin-left:20px; margin-right:20px;
}
	
	
	
	
}
