/* styles.css */
.buttons-outer {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.btn {
  display: inline-block;
  background-color: rgb(166, 38, 38);
  color: rgb(235, 235, 13);
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 4px;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 16px;
  text-align: center;
}

.btn:hover {
  background-color: rgb(200, 50, 50);
  /* color: white; */
}

header img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
}

body {
  background-color: #000033;
}

main.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
}

h1,
h2,
h3 {
  font-family: Tahoma, Geneva, sans-serif;
}
h1 {
  font-size: 32px;
  font-weight: 400;
  color: #000033;
  text-align: center;
  margin-bottom: 20px;
}

p,
ul,
li {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 16px;
  color: #000033;
  line-height: 1.6;
}

ul {
  padding-left: 40px;
  margin-bottom: 20px;
}

blockquote {
  font-family: "Charm", cursive;
  font-size: 22px;
  font-weight: 700;
  color: #000033;
  margin: 20px 0;
  padding: 40px;
  text-align: center;
  line-height: 1.4;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
}

.video-section {
  margin-bottom: 40px;
}
.video-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.video-container iframe {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
}
.video-container figcaption {
  padding: 0 20px;
}
figcaption p {
  font-style: italic;
}

.flex-div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.other-books {
  margin-bottom: 40px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
