body {
  background-color: #e6d6c2;
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.content {
  margin-top: 60px;
  width: 90%;
  padding: 0 30px;
}

h1,
h2 {
  background-color: #c49454;
  color: Black;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  top: 60px;
}

.author {
  position: static;
  background-color: #e6d6c2;
  box-shadow: none;
}

p {
  text-indent: 1.5em;
}

.hanging-indent {
  text-align: left;
  margin-left: 1.5em;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.image-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}

figure {
  display: flex;
  background-color: #f0f0f0;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 4px solid #c49454;
  border-radius: 5px;
}

img {
  width: 100%;
  max-width: 100%;
  border: 2px solid #c49454;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.video-wrapper {
  width: 80%;
  max-width: 1000px;
  border: 4px solid #c49454;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  margin: 0 auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  display: block;
  border: none;
}

figcaption {
  background-color: #f0f0f0;
  padding: 10px;
  margin: 10px;
  text-align: center;
  font-size: 14px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.button {
  background-color: #c49454;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
  background-color: #ad7d44;
  transform: translateY(2px);
}

.button:active {
  background-color: #8c6634;
  transform: translateY(0);
}

.fig-b {
  display: flex;
  background-color: #f0f0f0;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 4px solid #c49454;
  border-radius: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table,
th,
td {
  border: 2px solid #c49454;
  border-radius: 5px;
}

th,
td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #c49454;
  color: black;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:nth-child(odd) {
  background-color: #f1f1f1;
}

tr:hover {
  background-color: #e7e9eb;
}

.box {
  width: 80%;
  max-width: 1000px;
  background-color: #f0f0f0;
  padding: 20px;
  border: 4px solid #c49454;
  border-radius: 5px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

ul {
  margin: 10px 0;
  padding-left: 40px;
}

ul li {
  margin: 15px 0;
}

h3 {
  margin-top: 0;
  text-align: center;
}

hr {
  border: 0;
  height: 4px;
  background-color: #c49454;
  width: 100%;
  margin: 20px auto;
}

.tab-nav {
  display: flex;
  justify-content: center;
  background-color: #000000;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.tab-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.tab-nav a:hover,
.tab-nav a.active {
  background-color: #c49454;
  color: white;
}

section::before {
  content: "";
  display: block;
  height: 75px;
  margin-top: -75px;
  visibility: hidden;
}

/*

#home {
  padding-top: 72px;
}

#section1, #section2, #section3, #section4, #section5 {
  padding-top: 50px;
}

*/