* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
    background-color:#6D071A;
    overflow: hidden;
    top: 0;
    display: flex;
    justify-content: space-between;
}

.navbar a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 1em;
    text-decoration: none;
    font-size: 17px;
    flex:1;
}

.navbar a:hover{
    background-color: rgb(230, 65, 65);
    color: black;
}



body{
    background-color:#C21807;
}

h1{
    margin-top: 21px;
    margin-bottom: 14px;
    text-align: center;
    color:#FFF8F0;
    font-family: 'Times New Roman', Times, serif;
}

h3{
    text-align: center;
    color: #FFF8F0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin-top: 1em;
    margin-bottom: 1em;
}

p{
    font-family:sans-serif;
    color: #000000;
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
  }

#home-image{
    margin: auto;
    display: block;
    justify-content:center;
    width: 50%;
    padding: 1em;
}

.book-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.book-text {
  flex: 2;
  color: #1C1C1C;
  text-align: left;
}

.book-cover {
  flex: 1;
  text-align: right;
}

.book-cover img {
  max-width: 180px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#first-book,
#second-book,
#third-book,
#prequel-book {
  display: flex;
  align-items: center; 
  justify-content: center;
  max-width: 1000px;
  margin: 2rem auto;
  gap: 1.5rem;
  background-color: #FFF8F0;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.book-text {
  flex: 2;
  text-align: left;
  color: #1C1C1C;
}


.book-cover {
  flex: 1;
}

.book-cover img {
  max-width: 180px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}







.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button{
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #000000;
  color: #FFF8F0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover{
  background-color: rgb(230, 65, 65);
  color: black;
}

.quotes{
  text-align: center;
}

ul {
  font-family:sans-serif;
  margin-left: 25px;
  font-size: 16px;
}