@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lora', serif;
}
body {
  font-family: 'Montserrat', sans-serif;
/*  background-color: gold;*/
  color: black;
}
h1 {
  text-align: center;
  margin: 5rem 0rem;
  font-size: 40px;
  text-shadow: 2px 2px 3px grey;
}

#main_wrapper{
	display: flex;
     text-align: center;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: center;
}


.book_img{
    height:200px;
/*    border: 2px solid black;*/
    margin:0 20px;
/*
    padding:0;
    margin:0;
*/
    float:left;
}


.introduction{
    max-width:1000px;
    text-align: justify;
    text-justify: auto;
    font-size: 18px;
    height: 180px;
}

.book {
/*	background-color: aquamarine;*/
	margin-bottom: 5rem;
}

li {
	text-align: left;
	list-style-position: inside;
}

.accordion {
  width: 100%;
  max-width: 1000px;
/*  margin: 5rem auto;*/
	padding-left: 200px;
	margin-top: -55px;
}
.accordion-item {
  background-color: gold;
  color: black;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 2rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
	background-color: white;
}


@media(max-width:800px) {
	.accordion {
 		 width: 100%;
 		 max-width: 1000px;
		/*  margin: 5rem auto;*/
		padding-left: 0;
		margin-top: 55px;
}
}

